From c2829b02198141eb0e752727cd0175e1fb3d8b8f Mon Sep 17 00:00:00 2001 From: Brett McBride Date: Thu, 19 Dec 2024 16:02:03 +1100 Subject: [PATCH] ignore platform reqs for 8.4 install psalm is not yet compatible with 8.4, so force it --- .github/workflows/php.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 17fd261d0..66f8f9e00 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -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" @@ -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