From e6ea2246cd093fed10a5916c452e9488229b6d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Tamarelle?= Date: Wed, 9 Oct 2024 10:18:56 +0200 Subject: [PATCH] Skip psalm on PHP 8.4 --- .github/workflows/continuous-integration.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ab64f5200..56cd905e1 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -111,6 +111,13 @@ jobs: composer require --no-update symfony/var-dumper:^7@dev composer require --no-update --dev symfony/cache:^7@dev + - name: "Configure PHP 8.4" + if: "${{ matrix.php-version == '8.4' }}" + run: | + # psalm is not compatible with PHP 8.4 + # https://github.com/vimeo/psalm/pull/10928 + composer remove --no-update --dev vimeo/psalm + - name: "Install dependencies with Composer" uses: "ramsey/composer-install@v3" with: