File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments