Skip to content

Commit 88bb441

Browse files
committed
Attempt to fix v5 download issue
1 parent 33cb05c commit 88bb441

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/verify.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,6 @@ jobs:
210210
- prepare
211211
- pytest
212212
- mypy
213-
strategy:
214-
matrix:
215-
python-version: ["3.13"]
216213
steps:
217214
- name: Check out committed code
218215
uses: actions/checkout@v5
@@ -228,11 +225,12 @@ jobs:
228225
uses: actions/download-artifact@v5
229226
with:
230227
pattern: coverage-*
228+
merge-multiple: true
231229
path: ${{ github.workspace }}/artifacts
232230
- name: Combine coverage results
233231
run: |
234232
. venv/bin/activate
235-
coverage combine artifacts/coverage-*/.coverage* || mv artifacts/coverage-*/.coverage* .coverage
233+
coverage combine artifacts/coverage-*/.coverage*
236234
coverage report --fail-under=94
237235
coverage xml
238236
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)