Skip to content

Commit

Permalink
.github/workflows/run-tests.yaml: codecov/codecov-action@v3: Adju…
Browse files Browse the repository at this point in the history
…st `fail_ci_if_error`

Setting `fail_ci_if_error` to `false` is more suitable for a non-organizational repository.

Experiencing frequent issues with Codecov,
especially on public uploads without a secret, despite what's advertised.

Opting for a more reliable action workflow, even if it means some reports
might be less informative, rather than having the Actions fail due to these issues.

Signed-off-by: Stavros Ntentos <[email protected]>
  • Loading branch information
stdedos committed Dec 20, 2023
1 parent f559398 commit 8f56d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.os }},${{ matrix.python-version }}
fail_ci_if_error: true
fail_ci_if_error: ${{ github.repository_owner == 'pylint-dev' && 'true' || 'false' }}
files: test_artifacts/cobertura.xml

- name: Create artifacts
Expand Down

0 comments on commit 8f56d1c

Please sign in to comment.