Skip to content

Commit 5433e5c

Browse files
committed
Don't fail CI on coverage issues
1 parent c7db752 commit 5433e5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ jobs:
1818

1919
- name: Generate code coverage
2020
run: cargo +stable llvm-cov --all-features --workspace --lcov --output-path lcov.info
21+
continue-on-error: true
22+
2123
- name: Upload coverage to Codecov
2224
uses: codecov/codecov-action@v3
2325
with:
2426
files: lcov.info
25-
fail_ci_if_error: true
27+
fail_ci_if_error: false

0 commit comments

Comments
 (0)