File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ jobs:
32
32
33
33
python -Im tox
34
34
35
- - name : " Upload coverage data"
36
- uses : " actions/upload-artifact@v3 "
35
+ - name : Upload coverage data
36
+ uses : actions/upload-artifact@v4
37
37
with :
38
- name : " coverage-data"
39
- path : " .coverage.*"
40
- if-no-files-found : " ignore"
38
+ name : coverage-data-${{ matrix.python-version }}
39
+ path : .coverage.*
40
+ if-no-files-found : ignore
41
41
42
42
coverage :
43
43
name : " Combine & check coverage."
54
54
55
55
- run : " python -Im pip install --upgrade coverage[toml]"
56
56
57
- - uses : " actions/download-artifact@v3"
57
+ - name : Download coverage data
58
+ uses : actions/download-artifact@v4
58
59
with :
59
- name : " coverage-data"
60
+ pattern : coverage-data-*
61
+ merge-multiple : true
60
62
61
63
- name : " Combine coverage"
62
64
run : |
74
76
python -Im coverage report --fail-under=99
75
77
76
78
- name : " Upload HTML report."
77
- uses : " actions/upload-artifact@v3 "
79
+ uses : " actions/upload-artifact@v4 "
78
80
with :
79
81
name : " html-report"
80
82
path : " htmlcov"
You can’t perform that action at this time.
0 commit comments