We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f104d commit 89ce829Copy full SHA for 89ce829
.github/workflows/main.yml
@@ -110,9 +110,12 @@ jobs:
110
111
- name: Upload coverage
112
if: matrix.use_coverage && github.repository == 'pytest-dev/pluggy'
113
- env:
114
- CODECOV_NAME: ${{ matrix.name }}
115
- run: bash scripts/upload-coverage.sh -F GHA,${{ runner.os }}
+ uses: codecov/codecov-action@v4
+ continue-on-error: true
+ with:
116
+ fail_ci_if_error: true
117
+ files: ./coverage.xml
118
+ verbose: true
119
120
deploy:
121
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'pytest-dev/pluggy'
scripts/upload-coverage.sh
0 commit comments