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 4a94c72 commit b4f997dCopy full SHA for b4f997d
.github/workflows/python-test.yml
@@ -52,20 +52,21 @@ jobs:
52
- name: Prepare artifacts
53
run: mkdir .coverage-data && mv .coverage.* .coverage-data/
54
55
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
56
with:
57
- name: coverage-data
+ name: coverage-data-${{ matrix.python-version }}
58
path: .coverage-data/
59
60
coverage:
61
runs-on: ubuntu-latest
62
needs: [test]
63
steps:
64
- uses: actions/checkout@v4
65
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
66
67
68
path: .
+ pattern: coverage-data-*
69
+ merge-multiple: true
70
71
- name: Set up Python 3.12
72
uses: actions/setup-python@v5
0 commit comments