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 fbc85eb commit 75066fbCopy full SHA for 75066fb
.github/workflows/unit.yml
@@ -30,8 +30,12 @@ jobs:
30
GOARCH: 386
31
run: go test -v -cover
32
- name: Upload coverage to Codecov
33
- uses: codecov/codecov-action@v4
+ if: ${{ !cancelled() }}
34
+ uses: codecov/codecov-action@v5
35
+ env:
36
+ OS: ${{ matrix.os }}
37
+ GO: ${{ matrix.go }}
38
with:
- files: coverage.txt,coverage-root.txt
- env_vars: OS=${{ matrix.os }}, GO=${{ matrix.go }}
39
+ files: coverage.txt
40
+ env_vars: OS,GO
41
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments