From b9fdfd03a4319f2938aa03c3d951174417351d3b Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Tue, 6 Jun 2023 09:36:38 +0100 Subject: [PATCH] gh-actions: keep running even if codecov upload fails --- .github/workflows/ci-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 6b2132f7a..c2209544c 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -89,7 +89,7 @@ jobs: if: ${{ matrix.step == 'unit' }} uses: codecov/codecov-action@v3 with: - fail_ci_if_error: true + fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} tox-style: @@ -215,7 +215,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: - fail_ci_if_error: true + fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} release_test: name: cwltool release test @@ -295,5 +295,5 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: - fail_ci_if_error: true + fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }}