Skip to content

Commit 9ba3bb5

Browse files
committed
Group components in nightly symfony job
1 parent 3aaa8d3 commit 9ba3bb5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/nightly.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,10 +634,12 @@ jobs:
634634
export SYMFONY_DEPRECATIONS_HELPER=max[total]=999
635635
X=0
636636
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
637+
echo "::group::{$component}"
637638
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip || EXIT_CODE=$?
638639
if [ ${EXIT_CODE:-0} -gt 128 ]; then
639640
X=1;
640641
fi
642+
echo "::endgroup::"
641643
done
642644
exit $X
643645
- name: Test PHPUnit

0 commit comments

Comments
 (0)