Skip to content

Commit 6dec75e

Browse files
Don't fail job if coverage fails (#163)
Use `continue-on-error: true` to avoid grcov issues failing CI jobs
1 parent 76cb054 commit 6dec75e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/clippy_build_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383

8484
- name: UploadCoverage
8585
if: matrix.rust == 'stable'
86+
continue-on-error: true
8687
run: |
8788
grcov . --binary-path target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o coverage.info
8889
lcov --remove coverage.info lcov --ignore-errors unused '/Applications/*' 'target/debug/build/**' 'target/release/build/**' '/usr*' '**/errors.rs' '**/build.rs' 'examples/**' '*tests/*' -o coverage.info

0 commit comments

Comments
 (0)