File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ jobs:
43
43
run : tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
44
44
45
45
- name : Upload coverage data
46
- uses : actions/upload-artifact@v3
46
+ uses : actions/upload-artifact@v4
47
47
with :
48
- name : coverage-data
49
- path : ' .coverage.*'
48
+ name : coverage-data-${{ matrix.python-version }}
49
+ path : ' ${{ github.workspace }}/ .coverage.*'
50
50
51
51
coverage :
52
52
name : Coverage
63
63
run : python -m pip install --upgrade coverage[toml]
64
64
65
65
- name : Download data
66
- uses : actions/download-artifact@v3
66
+ uses : actions/download-artifact@v4
67
67
with :
68
- name : coverage-data
68
+ path : ${{ github.workspace }}
69
+ pattern : coverage-data-*
70
+ merge-multiple : true
69
71
70
72
- name : Combine coverage and fail if it's <100%
71
73
run : |
75
77
76
78
- name : Upload HTML report
77
79
if : ${{ failure() }}
78
- uses : actions/upload-artifact@v3
80
+ uses : actions/upload-artifact@v4
79
81
with :
80
82
name : html-report
81
83
path : htmlcov
You can’t perform that action at this time.
0 commit comments