We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85a57c3 commit 6322075Copy full SHA for 6322075
.github/workflows/php.yml
@@ -45,5 +45,14 @@ jobs:
45
# - name: Run test suite
46
# run: composer test
47
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
+
57
- name: Run all tests
58
run: ./bin/run-all-tests.sh
0 commit comments