File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 29
29
FORCE_COLOR : 1
30
30
POLYCOTYLUS_VERBOSITY : 1
31
31
steps :
32
- - uses : actions/checkout@v3
33
- - uses : actions/setup-python@v4
32
+ - uses : actions/checkout@v4
33
+ - uses : actions/setup-python@v5
34
34
with :
35
35
python-version : ${{ matrix._.python }}
36
36
@@ -62,22 +62,23 @@ jobs:
62
62
- run : polycotylus --configure docker=${{ matrix._.docker }}
63
63
- run : pytest --cov-fail-under=0 -sv ${{ matrix.suite }}
64
64
- run : mv .coverage .coverage-$(uuidgen)
65
- - uses : actions/upload-artifact@v3
65
+ - uses : actions/upload-artifact@v4
66
66
with :
67
- name : coverage
67
+ name : coverage-${{ strategy.job-index }}
68
68
path : .coverage-*
69
69
70
70
coverage :
71
71
runs-on : ubuntu-latest
72
72
needs : main
73
73
steps :
74
- - uses : actions/checkout@v3
75
- - uses : actions/setup-python@v4
74
+ - uses : actions/checkout@v4
75
+ - uses : actions/setup-python@v5
76
76
with :
77
77
python-version : 3.12 # must match latest version tested against
78
78
- run : pip install coverage
79
- - uses : actions/download-artifact@v3
79
+ - uses : actions/download-artifact@v4
80
80
with :
81
- name : coverage
81
+ pattern : coverage-*
82
+ merge-multiple : true
82
83
- run : coverage combine .coverage-*
83
84
- run : coverage report
You can’t perform that action at this time.
0 commit comments