Skip to content

Commit 6073461

Browse files
authored
Fix: CI tests with Symfony 7.1
1 parent b840d63 commit 6073461

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- description: 'Symfony 7.1 DEV'
2424
php: '8.2'
2525
symfony: '7.1.*@dev'
26+
dev: true
2627
- description: 'Symfony 7.0'
2728
php: '8.3'
2829
symfony: '7.0.*'
@@ -38,9 +39,9 @@ jobs:
3839
- description: 'Symfony 5.0'
3940
php: '8.3'
4041
symfony: '5.0.*'
41-
- description: 'Beta deps'
42+
- description: 'Dev deps'
4243
php: '8.1'
43-
beta: true
44+
dev: true
4445
name: PHP ${{ matrix.php }} tests (${{ matrix.description }})
4546
steps:
4647
- name: Checkout
@@ -60,6 +61,6 @@ jobs:
6061
- run: |
6162
composer config minimum-stability dev
6263
composer config prefer-stable true
63-
if: matrix.beta
64+
if: matrix.dev
6465
- run: composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
6566
- run: vendor/bin/phpunit

0 commit comments

Comments
 (0)