Skip to content

Commit 8f56d1c

Browse files
committed
.github/workflows/run-tests.yaml: codecov/codecov-action@v3: Adjust 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]>
1 parent f559398 commit 8f56d1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/run-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
with:
6767
token: ${{ secrets.CODECOV_TOKEN }}
6868
flags: ${{ matrix.os }},${{ matrix.python-version }}
69-
fail_ci_if_error: true
69+
fail_ci_if_error: ${{ github.repository_owner == 'pylint-dev' && 'true' || 'false' }}
7070
files: test_artifacts/cobertura.xml
7171

7272
- name: Create artifacts

0 commit comments

Comments
 (0)