We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 553cec3 commit 694caa5Copy full SHA for 694caa5
1 file changed
.github/workflows/main.yml
@@ -40,11 +40,12 @@ jobs:
40
run: go build -v ./...
41
42
- name: Test
43
- run: |
44
- go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
45
- echo "Coverage: $(go tool cover -func=coverage.out | grep total | awk '{print $3}')"
+ run: go test -v -race -coverprofile=coverage.txt ./...
46
47
- name: Upload to Codecov
48
uses: codecov/codecov-action@v5
49
with:
50
- token: ${{ secrets.CODECOV_TOKEN }}
+ token: ${{ secrets.CODECOV_TOKEN }}
+ fail_ci_if_error: false
+ verbose: true
51
+ flags: unittests
0 commit comments