We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9737e30 commit 3d9cd01Copy full SHA for 3d9cd01
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