File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/proto-plus/.github/workflows Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 7070 run : |
7171 nox -s unit${{ matrix.variant }}-${{ env.PYTHON_VERSION_TRIMMED }}
7272 - name : Upload coverage results
73- uses : actions/upload-artifact@v3
73+ uses : actions/upload-artifact@v4
7474 with :
75- name : coverage-artifacts
75+ name : coverage-artifact-${{ matrix.variant }}-${{ env.PYTHON_VERSION_TRIMMED }}
7676 path : .coverage-${{ matrix.variant }}-${{ env.PYTHON_VERSION_TRIMMED }}
7777 cover :
7878 runs-on : ubuntu-latest
@@ -90,11 +90,11 @@ jobs:
9090 python -m pip install --upgrade setuptools pip wheel
9191 python -m pip install coverage
9292 - name : Download coverage results
93- uses : actions/download-artifact@v3
93+ uses : actions/download-artifact@v4
9494 with :
95- name : coverage-artifacts
9695 path : .coverage-results/
9796 - name : Report coverage results
9897 run : |
99- coverage combine .coverage-results/.coverage*
98+ find .coverage-results -type f -name '*.zip' -exec unzip {} \;
99+ coverage combine .coverage-results/**/.coverage*
100100 coverage report --show-missing --fail-under=100
You can’t perform that action at this time.
0 commit comments