Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,17 @@ jobs:
run: go test -race -count=1 -coverprofile=coverage.out ./...

- name: Upload coverage
# No token: Codecov accepts tokenless uploads from public repositories
# once the repository is activated on their side. Adding a secret would
# be a credential to store, rotate, and leak for no gain.
#
# continue-on-error because coverage reporting is not a correctness
# signal. Codecov being down, rate-limiting, or rejecting an upload
# must not turn a PR red when the tests themselves passed.
continue-on-error: true
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
files: coverage.out
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false

lint:
Expand Down