Skip to content

Commit 8d7f1b8

Browse files
committed
Only 1 bracket
1 parent 8040031 commit 8d7f1b8

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/tests2.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ jobs:
3838
uses: actions/checkout@v4
3939

4040
- name: Install dependencies
41-
run: composer update --no-interaction
41+
run: |
42+
if [ ${{ matrix.php == 'nightly' }} ]; then
43+
composer update --no-interaction --ignore-platform-reqs
44+
else
45+
composer update --no-interaction
46+
fi
4247
4348
- name: Run PHPCS
4449
run: vendor/bin/phpcs

0 commit comments

Comments
 (0)