File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 26
26
run : |
27
27
nox -s unit-${{ matrix.python }}
28
28
- name : Upload coverage results
29
- uses : actions/upload-artifact@v3
29
+ uses : actions/upload-artifact@v4
30
30
with :
31
- name : coverage-artifacts
31
+ name : coverage-artifact-${{ matrix.python }}
32
32
path : .coverage-${{ matrix.python }}
33
33
include-hidden-files : true
34
34
@@ -48,11 +48,11 @@ jobs:
48
48
python -m pip install --upgrade setuptools pip wheel
49
49
python -m pip install coverage
50
50
- name : Download coverage results
51
- uses : actions/download-artifact@v3
51
+ uses : actions/download-artifact@v4
52
52
with :
53
- name : coverage-artifacts
54
53
path : .coverage-results/
55
54
- name : Report coverage results
56
55
run : |
57
- coverage combine .coverage-results/.coverage*
56
+ find .coverage-results -type f -name '*.zip' -exec unzip {} \;
57
+ coverage combine .coverage-results/**/.coverage*
58
58
coverage report --show-missing --fail-under=99
You can’t perform that action at this time.
0 commit comments