From 259e4fcf69c8ca03698e69577c80ecc8e90dd3cf Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Thu, 9 Jul 2026 16:12:52 +0200 Subject: [PATCH] Make Codecov upload best effort --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03b74f1..11f57d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,11 +61,12 @@ jobs: example-cli-command - name: Upload coverage to Codecov + continue-on-error: true uses: codecov/codecov-action@v7 with: files: ./pytest-coverage.xml,./unittest-coverage.xml # optional (default = coverage.xml) flags: template_coverage # optional use_oidc: true - fail_ci_if_error: true + fail_ci_if_error: false disable_search: true plugins: noop