Skip to content

Commit 66d9dae

Browse files
committed
Explicit download coverage artifact to subdirectory
1 parent 8aa8a3e commit 66d9dae

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,12 +255,13 @@ jobs:
255255
- name: Download all coverage artifacts
256256
uses: actions/download-artifact@v5
257257
with:
258-
pattern: coverage-${{ matrix.plex }}*
258+
name: coverage-${{ matrix.plex }}-${{ steps.python.outputs.python-version }}
259+
path: coverage-${{ matrix.plex }}-${{ steps.python.outputs.python-version }}
259260

260261
- name: Combine ${{ matrix.plex }} coverage results
261262
run: |
262263
. venv/bin/activate
263-
coverage combine .coverage
264+
coverage combine coverage-${{ matrix.plex }}*/.coverage*
264265
coverage report --fail-under=50
265266
coverage xml
266267

0 commit comments

Comments
 (0)