Skip to content

Commit

Permalink
Update tester
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-vessey authored Jan 6, 2025
1 parent fded105 commit 4fe8f02
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .scripts/tester
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
export SYMFONY_DEPRECATIONS_HELPER=disabled
FAIL=0
for D in */; do
cd $D
echo "Operating on $D"
echo "::group::Testing $D"
cd $D
composer test
if [ $? -ne 0 ]; then
FAIL=1
fi
cd ..
cd ..
echo "::endgroup"
done
exit $FAIL

0 comments on commit 4fe8f02

Please sign in to comment.