We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7289ffa + 43c1620 commit b51c2c5Copy full SHA for b51c2c5
.github/workflows/verify.yml
@@ -222,11 +222,15 @@ jobs:
222
venv-dir: ${{ env.VENV }}
223
precommit-home: ${{ env.PRE_COMMIT_HOME }}
224
- name: Download all coverage artifacts
225
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v5
226
+ with:
227
+ pattern: coverage-*
228
+ merge-multiple: true
229
+ path: ${{ github.workspace }}/artifacts
230
- name: Combine coverage results
231
run: |
232
. venv/bin/activate
- coverage combine coverage*/.coverage*
233
+ coverage combine artifacts/.coverage*
234
coverage report --fail-under=94
235
coverage xml
236
- name: Upload coverage to Codecov
0 commit comments