File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -70,20 +70,26 @@ jobs:
70
70
- name : Prepare artifacts
71
71
run : mkdir .coverage-data && mv .coverage.* .coverage-data/
72
72
73
- - uses : actions/upload-artifact@master
73
+ - uses : actions/upload-artifact@v4
74
74
with :
75
- name : coverage-data
76
- path : .coverage-data/
75
+ name : coverage-data-${{ matrix.platform }}-${{ matrix.python-version }}
76
+ path : .coverage-data/.coverage.*
77
77
78
78
coverage :
79
79
runs-on : ubuntu-latest
80
80
needs : [test]
81
81
steps :
82
82
- uses : actions/checkout@v4
83
83
84
- - uses : actions/download-artifact@master
84
+ - name : Merge Artifacts
85
+ uses : actions/upload-artifact/merge@v4
85
86
with :
86
- name : coverage-data
87
+ delete-merged : true
88
+
89
+ - uses : actions/download-artifact@v4
90
+ with :
91
+ pattern : coverage-data-*
92
+ merge-multiple : coverage-data-*
87
93
path : .
88
94
89
95
- name : Set up Python 3.12
You can’t perform that action at this time.
0 commit comments