Skip to content

Commit e6ea224

Browse files
committed
Skip psalm on PHP 8.4
1 parent 25b417f commit e6ea224

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: .github/workflows/continuous-integration.yml

+7
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ jobs:
111111
composer require --no-update symfony/var-dumper:^7@dev
112112
composer require --no-update --dev symfony/cache:^7@dev
113113
114+
- name: "Configure PHP 8.4"
115+
if: "${{ matrix.php-version == '8.4' }}"
116+
run: |
117+
# psalm is not compatible with PHP 8.4
118+
# https://github.com/vimeo/psalm/pull/10928
119+
composer remove --no-update --dev vimeo/psalm
120+
114121
- name: "Install dependencies with Composer"
115122
uses: "ramsey/composer-install@v3"
116123
with:

0 commit comments

Comments
 (0)