Skip to content

Commit b3009db

Browse files
committed
Make Codecov failures non-blocking in CI workflow
Change fail_ci_if_error from true to false to prevent Codecov upload issues from failing the entire CI build. This is a more resilient configuration that: - Still uploads code coverage when Codecov service is available - Prevents transient Codecov API issues from blocking builds - Allows builds to succeed on forks/branches without Codecov token access The build and tests are what matter most for CI success; code coverage reporting is supplementary.
1 parent 27a46e3 commit b3009db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- uses: codecov/codecov-action@v4
5353
with:
5454
name: unittests-${{ matrix.os }}
55-
fail_ci_if_error: true
55+
fail_ci_if_error: false
5656
token: ${{ secrets.CODECOV_TOKEN }}
5757
release:
5858
if: ${{ github.event.inputs.release }}

0 commit comments

Comments
 (0)