Commit 062c132 1 parent a0eba77 commit 062c132 Copy full SHA for 062c132
File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
docker :
15
15
image : gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16
- digest : sha256:230f7fe8a0d2ed81a519cfc15c6bb11c5b46b9fb449b8b1219b3771bcb520ad2
17
- # created: 2023-12-09T15:16:25.430769578Z
16
+ digest : sha256:346ab2efb51649c5dde7756cbbdc60dd394852ba83b9bbffc292a63549f33c17
17
+ # created: 2023-12-14T22:17:57.611773021Z
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
34
34
cover :
@@ -47,11 +47,11 @@ jobs:
47
47
python -m pip install --upgrade setuptools pip wheel
48
48
python -m pip install coverage
49
49
- name : Download coverage results
50
- uses : actions/download-artifact@v3
50
+ uses : actions/download-artifact@v4
51
51
with :
52
- name : coverage-artifacts
53
52
path : .coverage-results/
54
53
- name : Report coverage results
55
54
run : |
56
- coverage combine .coverage-results/.coverage*
55
+ find .coverage-results -type f -name '*.zip' -exec unzip {} \;
56
+ coverage combine .coverage-results/**/.coverage*
57
57
coverage report --show-missing --fail-under=100
You can’t perform that action at this time.
0 commit comments