Skip to content

Commit

Permalink
Fix: CI tests with Symfony 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpozzi authored Apr 19, 2024
1 parent b840d63 commit 6073461
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- description: 'Symfony 7.1 DEV'
php: '8.2'
symfony: '7.1.*@dev'
dev: true
- description: 'Symfony 7.0'
php: '8.3'
symfony: '7.0.*'
Expand All @@ -38,9 +39,9 @@ jobs:
- description: 'Symfony 5.0'
php: '8.3'
symfony: '5.0.*'
- description: 'Beta deps'
- description: 'Dev deps'
php: '8.1'
beta: true
dev: true
name: PHP ${{ matrix.php }} tests (${{ matrix.description }})
steps:
- name: Checkout
Expand All @@ -60,6 +61,6 @@ jobs:
- run: |
composer config minimum-stability dev
composer config prefer-stable true
if: matrix.beta
if: matrix.dev
- run: composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
- run: vendor/bin/phpunit

0 comments on commit 6073461

Please sign in to comment.