Skip to content

Commit

Permalink
ignore platform reqs for 8.4 install
Browse files Browse the repository at this point in the history
psalm is not yet compatible with 8.4, so force it
  • Loading branch information
brettmc committed Dec 19, 2024
1 parent 4a021fb commit c2829b0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3', '8.4']
php-version: ['8.1', '8.2', '8.3']
experimental: [false]
composer_args: [""]
include:
- php-version: 8.4
experimental: false
composer_args: "--ignore-platform-reqs"
- php-version: 8.5
experimental: true
composer_args: "--ignore-platform-reqs"
Expand Down Expand Up @@ -96,7 +99,7 @@ jobs:
- name: Install dependencies
id: composer
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest ${{ matrix.composer_args }}
run: composer install --prefer-dist --no-progress ${{ matrix.composer_args }}

- name: Check Style
id: style
Expand Down

0 comments on commit c2829b0

Please sign in to comment.