Skip to content

Commit e6fc571

Browse files
committed
Didn't take v4 breaking changes into account.
1 parent cb2f355 commit e6fc571

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Upload coverage data
4747
uses: actions/upload-artifact@v4
4848
with:
49-
name: coverage-data
49+
name: coverage-data-${{ matrix.python-version }}
5050
path: '.coverage.*'
5151
if-no-files-found: error
5252
retention-days: 1
@@ -67,9 +67,10 @@ jobs:
6767
run: python -m pip install --upgrade coverage[toml]
6868

6969
- name: Download data
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
with:
72-
name: coverage-data
72+
pattern: 'coverage-data-*'
73+
merge-multiple: true
7374

7475
- name: Fail if coverage is <100%
7576
run: |

0 commit comments

Comments
 (0)