Skip to content

Commit

Permalink
Merge pull request #516 from Chris53897/feature/add-php84-tests
Browse files Browse the repository at this point in the history
ci: add tests for PHP 8.4
  • Loading branch information
alexpozzi authored Jan 6, 2025
2 parents 8c502df + 3ea36fe commit 3dd138e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,12 @@ jobs:
fail-fast: false
matrix:
include:
- description: 'Symfony 7.1 DEV'
- description: 'Symfony 7.2 DEV'
php: '8.2'
symfony: '7.1.*@dev'
symfony: '7.2.*@dev'
- description: 'Symfony 7.0'
php: '8.4'
symfony: '7.0.*'
- description: 'Symfony 7.0'
php: '8.3'
symfony: '7.0.*'
Expand Down Expand Up @@ -74,7 +77,7 @@ jobs:
composer config prefer-stable true
if: matrix.beta
- name: remove cs-fixer for Symfony 7 (temporary as not-supported yet)
if: contains(matrix.symfony, '7.1.*@dev') || contains(matrix.symfony, '7.0.*')
if: contains(matrix.symfony, '7.2.*@dev') || contains(matrix.symfony, '7.0.*')
run: |
composer remove --dev friendsofphp/php-cs-fixer pedrotroller/php-cs-custom-fixer --no-update
- run: composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
Expand All @@ -86,9 +89,12 @@ jobs:
fail-fast: false
matrix:
include:
- description: 'Symfony 7.1 DEV'
- description: 'Symfony 7.2 DEV'
php: '8.2'
symfony: '7.1.*@dev'
symfony: '7.2.*@dev'
- description: 'Symfony 7.0'
php: '8.4'
symfony: '7.0.*'
- description: 'Symfony 7.0'
php: '8.3'
symfony: '7.0.*'
Expand Down Expand Up @@ -119,7 +125,7 @@ jobs:
composer config prefer-stable true
if: matrix.beta
- name: remove cs-fixer for Symfony 7 (temporary as not-supported yet)
if: contains(matrix.symfony, '7.1.*@dev') || contains(matrix.symfony, '7.0.*')
if: contains(matrix.symfony, '7.2.*@dev') || contains(matrix.symfony, '7.0.*')
run: |
composer remove --dev friendsofphp/php-cs-fixer pedrotroller/php-cs-custom-fixer --no-update
- run: composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
Expand Down

0 comments on commit 3dd138e

Please sign in to comment.