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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
# default fetch-depth is insufficient to find previous coverage notes
fetch-depth: 10

- name: Set up Go
uses: actions/setup-go@v6
Expand All @@ -39,7 +42,7 @@ jobs:
with:
# Optional coverage threshold
# use fail-coverage to determine what should happen below this threshold
coverage-threshold: 100
coverage-threshold: 99.9
cover-pkg: ./...
add-comment: false
fail-coverage: false
Expand Down
Loading