Skip to content

Commit

Permalink
ci: Fix coverage data upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbazzan committed Jan 18, 2025
1 parent 00390e5 commit 072a0d1
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 @@ -41,7 +41,8 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}
include-hidden-files: true
path: '.coverage.*'

coverage:
Expand All @@ -61,7 +62,8 @@ jobs:
- name: Download data
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage
run: |
Expand Down

0 comments on commit 072a0d1

Please sign in to comment.