Skip to content

Commit 7789409

Browse files
Use continue-on-error: true
1 parent 9970412 commit 7789409

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/clippy_build_test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ jobs:
8383

8484
- name: UploadCoverage
8585
if: matrix.rust == 'stable'
86+
continue-on-error: true
8687
run: |
87-
grcov . --binary-path target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o coverage.info || true
88-
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 || true
89-
bash <(curl -s https://codecov.io/bash) -f coverage.info || true
88+
grcov . --binary-path target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o coverage.info
89+
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
90+
bash <(curl -s https://codecov.io/bash) -f coverage.info
9091
9192

0 commit comments

Comments
 (0)