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.
1 parent 8656a56 commit 6c37bcdCopy full SHA for 6c37bcd
.github/workflows/verify.yml
@@ -145,11 +145,15 @@ jobs:
145
. venv/bin/activate
146
uv pip install -r requirements.txt -r requirements-test.txt
147
- name: Download all coverage artifacts
148
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v5
149
+ with:
150
+ pattern: coverage-*
151
+ merge-multiple: true
152
+ path: ${{ github.workspace }}/artifacts
153
- name: Combine coverage results
154
run: |
155
- coverage combine coverage*/.coverage*
156
+ coverage combine artifacts/.coverage*
157
coverage report --fail-under=85
158
coverage xml
159
- name: Upload coverage to Codecov
0 commit comments