We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c0fa8d + 00081bd commit 5b9c211Copy full SHA for 5b9c211
.github/workflows/build.yml
@@ -4,7 +4,7 @@ jobs:
4
test:
5
strategy:
6
matrix:
7
- go-version: [1.18.x, 1.19.x, 1.20.x]
+ go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x]
8
os: [ubuntu-latest, macos-latest, windows-latest]
9
runs-on: ${{ matrix.os }}
10
steps:
@@ -18,14 +18,7 @@ jobs:
18
if: runner.os == 'Linux'
19
run: test -z $(go fmt ./...)
20
- name: Test
21
- run: go test -covermode atomic -coverprofile='profile.cov' ./...
22
- - name: Send coverage
23
- if: runner.os == 'Linux'
24
- env:
25
- COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
- run: |
27
- GO111MODULE=off go get github.com/mattn/goveralls
28
- $(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
+ run: go test -v ./...
29
staticcheck:
30
name: "Run staticcheck"
31
runs-on: ubuntu-latest
0 commit comments