File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
synthtool/gcp/templates/python_library/.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 2626 run : |
2727 nox -s unit-${{ '{{' }} matrix.python {{ '}}' }}
2828 - name : Upload coverage results
29- uses : actions/upload-artifact@v3
29+ uses : actions/upload-artifact@v4
3030 with :
31- name : coverage-artifacts
31+ name : coverage-artifact-${{ '{{' }} matrix.python {{ '}}' }}
3232 path : .coverage-${{ '{{' }} matrix.python {{ '}}' }}
3333
3434 cover :
@@ -47,11 +47,11 @@ jobs:
4747 python -m pip install --upgrade setuptools pip wheel
4848 python -m pip install coverage
4949 - name : Download coverage results
50- uses : actions/download-artifact@v3
50+ uses : actions/download-artifact@v4
5151 with :
52- name : coverage-artifacts
5352 path : .coverage-results/
5453 - name : Report coverage results
5554 run : |
56- coverage combine .coverage-results/.coverage*
55+ find .coverage-results -type f -name '*.zip' -exec unzip {} \;
56+ coverage combine .coverage-results/**/.coverage*
5757 coverage report --show-missing --fail-under={{ cov_level if cov_level != None else 100 }}
You can’t perform that action at this time.
0 commit comments