We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2dd917 commit 8d87d5bCopy full SHA for 8d87d5b
.github/workflows/go-build.yml
@@ -34,10 +34,9 @@ jobs:
34
run: golangci-lint run
35
36
- name: Run Tests and Generate Coverage
37
- run: go test -v -coverprofile=coverage.out ./...
+ run: go test -v -coverprofile=coverage.txt ./...
38
39
- - name: Upload Coverage Report
40
- uses: actions/upload-artifact@v3
+ - name: Upload coverage reports to Codecov
+ uses: codecov/codecov-action@v5
41
with:
42
- name: coverage-report
43
- path: coverage.out
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments