Skip to content

Commit

Permalink
Run tests with PHP 8.4 (#2616)
Browse files Browse the repository at this point in the history
* Run tests with PHP 8.4

* Skip psalm on PHP 8.4
  • Loading branch information
GromNaN authored Nov 4, 2024
1 parent e9a8e78 commit 0b05bf2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
mongodb-version:
- "7.0"
- "6.0"
Expand Down Expand Up @@ -110,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:
Expand Down

0 comments on commit 0b05bf2

Please sign in to comment.