We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb0eb3 commit 81eb368Copy full SHA for 81eb368
1 file changed
.github/workflows/python-tests.yml
@@ -52,7 +52,7 @@ jobs:
52
- name: "Save coverage artifact"
53
uses: "actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3"
54
with:
55
- name: "coverage-artifact"
+ name: "coverage-artifact-${{ matrix.os}}-${{ matrix.python-version}}"
56
path: ".coverage.*"
57
retention-days: 1
58
@@ -76,7 +76,9 @@ jobs:
76
- name: "Download coverage artifacts"
77
uses: "actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427"
78
79
- name: coverage-artifact
+ name: "coverage-artifacts"
80
+ pattern: "coverage-artifact-*"
81
+ merge-multiple: true
82
83
- name: "Compile coverage data, print report"
84
run: |
0 commit comments