We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8040031 commit 8d7f1b8Copy full SHA for 8d7f1b8
1 file changed
.github/workflows/tests2.yml
@@ -38,7 +38,12 @@ jobs:
38
uses: actions/checkout@v4
39
40
- name: Install dependencies
41
- run: composer update --no-interaction
+ run: |
42
+ if [ ${{ matrix.php == 'nightly' }} ]; then
43
+ composer update --no-interaction --ignore-platform-reqs
44
+ else
45
+ composer update --no-interaction
46
+ fi
47
48
- name: Run PHPCS
49
run: vendor/bin/phpcs
0 commit comments