Skip to content

Commit 42f9a60

Browse files
committed
Merge branch 'pw/ci-print-failure-name-fix'
(cosmetic) CI regression fix. * pw/ci-print-failure-name-fix: ci(github): restore "print test failures" step name
2 parents 7c73579 + 7b34164 commit 42f9a60

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,9 @@ jobs:
265265
- uses: actions/checkout@v3
266266
- run: ci/install-dependencies.sh
267267
- run: ci/run-build-and-tests.sh
268-
- run: ci/print-test-failures.sh
268+
- name: print test failures
269269
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
270+
run: ci/print-test-failures.sh
270271
- name: Upload failed tests' directories
271272
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
272273
uses: actions/upload-artifact@v3
@@ -298,8 +299,9 @@ jobs:
298299
if: matrix.vector.jobname == 'linux32'
299300
- run: ci/install-docker-dependencies.sh
300301
- run: ci/run-build-and-tests.sh
301-
- run: ci/print-test-failures.sh
302+
- name: print test failures
302303
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
304+
run: ci/print-test-failures.sh
303305
- name: Upload failed tests' directories
304306
if: failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname != 'linux32'
305307
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)