Skip to content

Commit f73bcfa

Browse files
authored
ignore platform reqs for 8.4 install (#1460)
psalm is not yet compatible with 8.4, so force it
1 parent 4a021fb commit f73bcfa

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/php.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-version: ['8.1', '8.2', '8.3', '8.4']
16+
php-version: ['8.1', '8.2', '8.3']
1717
experimental: [false]
1818
composer_args: [""]
1919
include:
20+
- php-version: 8.4
21+
experimental: false
22+
composer_args: "--ignore-platform-reqs"
2023
- php-version: 8.5
2124
experimental: true
2225
composer_args: "--ignore-platform-reqs"
@@ -96,7 +99,7 @@ jobs:
9699
- name: Install dependencies
97100
id: composer
98101
if: steps.composer-cache.outputs.cache-hit != 'true'
99-
run: composer install --prefer-dist --no-progress --no-suggest ${{ matrix.composer_args }}
102+
run: composer install --prefer-dist --no-progress ${{ matrix.composer_args }}
100103

101104
- name: Check Style
102105
id: style

0 commit comments

Comments
 (0)