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.
1 parent 66f9d47 commit d82aa99Copy full SHA for d82aa99
.github/workflows/linux.yml
@@ -24,10 +24,11 @@ jobs:
24
25
- name: Test
26
run: go test -covermode=count -coverprofile=profile.cov ./pkg/...
27
-
+
28
+ - name: Install goveralls
29
+ run: go install github.com/mattn/goveralls@latest
30
31
- name: Send coverage
32
env:
33
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
- GO111MODULE=off go get github.com/mattn/goveralls
- $(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
34
+ run: goveralls -coverprofile=profile.cov -service=github
0 commit comments