Skip to content

Commit

Permalink
ci: add tests for PHP 8.4
Browse files Browse the repository at this point in the history
change tests dev 7.1 => 7.2
  • Loading branch information
Chris8934 committed Nov 21, 2024
1 parent 5388a1a commit 9c367d1
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.1.*') || 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.1.*') || 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 9c367d1

Please sign in to comment.