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 77a8562 commit b42fdedCopy full SHA for b42fded
.github/workflows/test.yml
@@ -36,9 +36,9 @@ jobs:
36
- name: Test with tox
37
run: python -m tox
38
- name: Store partial coverage reports
39
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
40
with:
41
- name: coverage
+ name: coverage-${{ matrix.runs-on }}
42
path: .coverage.*
43
44
coveralls:
@@ -54,9 +54,10 @@ jobs:
54
- name: Install coverage package
55
run: python -m pip install -U coverage
56
- name: Download partial coverage reports
57
- uses: actions/download-artifact@v2
+ uses: actions/download-artifact@v4
58
59
+ pattern: coverage-*
60
+ merge-multiple: true
61
- name: Combine coverage
62
run: python -m coverage combine
63
- name: Report coverage
0 commit comments