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 041d889 commit 62bb317Copy full SHA for 62bb317
.github/workflows/test.yml
@@ -41,7 +41,8 @@ jobs:
41
- name: Upload coverage data
42
uses: actions/upload-artifact@v4
43
with:
44
- name: coverage-data
+ name: coverage-data-${{ matrix.python-version }}
45
+ include-hidden-files: true
46
path: '.coverage.*'
47
48
coverage:
@@ -59,9 +60,10 @@ jobs:
59
60
run: python -m pip install --upgrade coverage[toml]
61
62
- name: Download data
- uses: actions/download-artifact@v3
63
+ uses: actions/download-artifact@v4
64
65
+ pattern: coverage-data-*
66
+ merge-multiple: true
67
68
- name: Combine coverage
69
run: |
0 commit comments