Skip to content

Commit 6322075

Browse files
committed
Correcting GH workflow
1 parent 85a57c3 commit 6322075

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/php.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,14 @@ jobs:
4545
# - name: Run test suite
4646
# run: composer test
4747

48+
- name: Install dependencies in all packages
49+
run: |
50+
for dir in packages/*; do
51+
if [ -f "$dir/composer.json" ]; then
52+
echo "📦 Installing dependencies in $dir"
53+
composer --working-dir="$dir" update --no-interaction ${{ matrix.composer }}
54+
fi
55+
done
56+
4857
- name: Run all tests
4958
run: ./bin/run-all-tests.sh

0 commit comments

Comments
 (0)