Skip to content

Commit 0370530

Browse files
committed
one step in favor of grouped output
1 parent a120ad9 commit 0370530

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/verify-bundled-files.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ jobs:
2727
- '.github/scripts/download-bundled/pcre2.sh'
2828
- 'ext/pcre/pcre2lib/**'
2929
30-
- name: PCRE2 - Download
30+
- name: PCRE2
3131
if: ${{ !cancelled() && (steps.changes.outputs.pcre2 == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request')) }}
32-
run: .github/scripts/download-bundled/pcre2.sh
33-
34-
- name: PCRE2 - Verify files
35-
if: ${{ !cancelled() && (steps.changes.outputs.pcre2 == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request')) }}
36-
run: .github/scripts/test-directory-unchanged.sh ext/pcre/pcre2lib
32+
run: |
33+
echo "::group::Download"
34+
.github/scripts/download-bundled/pcre2.sh
35+
echo "::endgroup::"
36+
echo "::group::Verify files"
37+
.github/scripts/test-directory-unchanged.sh ext/pcre/pcre2lib
38+
echo "::endgroup::"

0 commit comments

Comments
 (0)