Skip to content

Commit

Permalink
Submit to breaking changes in actions/upload-artifact v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Stormheg committed Sep 13, 2024
1 parent 7f92107 commit 03cf428
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python }}
path: .coverage.*
if-no-files-found: ignore
include-hidden-files: true
Expand All @@ -72,7 +72,8 @@ jobs:
- name: Download coverage data
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage
run: |
Expand All @@ -88,3 +89,4 @@ jobs:
with:
name: html-report
path: htmlcov
overwrite: true

0 comments on commit 03cf428

Please sign in to comment.