We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2f355 commit e6fc571Copy full SHA for e6fc571
.github/workflows/test.yml
@@ -46,7 +46,7 @@ jobs:
46
- name: Upload coverage data
47
uses: actions/upload-artifact@v4
48
with:
49
- name: coverage-data
+ name: coverage-data-${{ matrix.python-version }}
50
path: '.coverage.*'
51
if-no-files-found: error
52
retention-days: 1
@@ -67,9 +67,10 @@ jobs:
67
run: python -m pip install --upgrade coverage[toml]
68
69
- name: Download data
70
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
71
72
+ pattern: 'coverage-data-*'
73
+ merge-multiple: true
74
75
- name: Fail if coverage is <100%
76
run: |
0 commit comments