From 83367335d42728fe7ed2d8097626e8fdd0f1c174 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Tue, 19 Mar 2024 21:52:54 +0100 Subject: [PATCH] Skip psalm on PHP 8.4 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e2803b..d997994 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: - operating-system: 'ubuntu-latest' php-version: 8.4 composer-flags: '--ignore-platform-req=php+' + psalm: none name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }} runs-on: ${{ matrix.operating-system }} @@ -81,6 +82,7 @@ jobs: - name: Run Psalm run: vendor/bin/psalm.phar --show-info=true + if: matrix.psalm != 'none' - name: Run style fixer env: