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:
4343 run : tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
4444
4545 - name : Upload coverage data
46- uses : actions/upload-artifact@v3
46+ uses : actions/upload-artifact@v4
4747 with :
48- name : coverage-data
49- path : ' .coverage.*'
48+ name : coverage-data-${{ matrix.python-version }}
49+ path : ' ${{ github.workspace }}/ .coverage.*'
5050
5151 coverage :
5252 name : Coverage
6363 run : python -m pip install --upgrade coverage[toml]
6464
6565 - name : Download data
66- uses : actions/download-artifact@v3
66+ uses : actions/download-artifact@v4
6767 with :
68- name : coverage-data
68+ path : ${{ github.workspace }}
69+ pattern : coverage-data-*
70+ merge-multiple : true
6971
7072 - name : Combine coverage and fail if it's <100%
7173 run : |
7577
7678 - name : Upload HTML report
7779 if : ${{ failure() }}
78- uses : actions/upload-artifact@v3
80+ uses : actions/upload-artifact@v4
7981 with :
8082 name : html-report
8183 path : htmlcov
You can’t perform that action at this time.
0 commit comments