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 6d70af0 + 209f4cf commit bf20b46Copy full SHA for bf20b46
1 file changed
.github/workflows/go.yml
@@ -25,11 +25,13 @@ jobs:
25
- name: Test
26
run: go test -v -coverprofile=coverage.out -covermode=atomic ./...
27
28
- - name: Upload coverage to Codecov
+ - name: Coverage
29
+ run: go test -coverprofile=coverage.txt
30
+
31
+ - name: Upload coverage reports to Codecov
32
uses: codecov/codecov-action@v5
33
with:
- files: coverage.out
- fail_ci_if_error: false
34
+ token: ${{ secrets.CODECOV_TOKEN }}
35
36
integration:
37
name: Integration Tests
0 commit comments