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 d345807 commit 5a86eb1Copy full SHA for 5a86eb1
.github/workflows/test.yml
@@ -24,10 +24,10 @@ jobs:
24
- name: Run tests
25
run: go test -race -covermode atomic -coverprofile=covprofile ./...
26
27
- - name: Install goveralls
28
- run: go install github.com/mattn/goveralls@latest
29
-
30
- - name: Send coverage
+ - if: github.event_name != 'pull_request'
+ name: Send coverage
31
env:
32
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
33
- run: goveralls -coverprofile=covprofile -service=github
+ run: |
+ go install github.com/mattn/goveralls@latest
+ goveralls -coverprofile=covprofile -service=github
0 commit comments