File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,18 @@ on: [push, pull_request]
22name : Test
33jobs :
44 test :
5- strategy :
6- matrix :
7- go-version : [1.15.x, 1.16.x]
8- os : [ubuntu-latest]
9- runs-on : ${{ matrix.os }}
5+ runs-on : ubuntu-latest
106 steps :
117 - name : Install Go
128 uses : actions/setup-go@v2
139 with :
14- go-version : ${{ matrix.go-version }}
10+ go-version : 1.16.x
1511 - name : Checkout code
1612 uses : actions/checkout@v2
17- - name : Test and coverage
13+ - name : Test
1814 run : |
1915 go test -coverprofile coverage.txt
2016 go test -tags bitstring_debug .
17+ GOARCH=mips go test
2118 - name : Codecov
2219 run : bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ # Maintain dependencies for GitHub Actions
4+ - package-ecosystem : " github-actions"
5+ directory : " /"
6+ schedule :
7+ interval : " daily"
You can’t perform that action at this time.
0 commit comments