We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b840d63 commit 6073461Copy full SHA for 6073461
.github/workflows/build.yaml
@@ -23,6 +23,7 @@ jobs:
23
- description: 'Symfony 7.1 DEV'
24
php: '8.2'
25
symfony: '7.1.*@dev'
26
+ dev: true
27
- description: 'Symfony 7.0'
28
php: '8.3'
29
symfony: '7.0.*'
@@ -38,9 +39,9 @@ jobs:
38
39
- description: 'Symfony 5.0'
40
41
symfony: '5.0.*'
- - description: 'Beta deps'
42
+ - description: 'Dev deps'
43
php: '8.1'
- beta: true
44
45
name: PHP ${{ matrix.php }} tests (${{ matrix.description }})
46
steps:
47
- name: Checkout
@@ -60,6 +61,6 @@ jobs:
60
61
- run: |
62
composer config minimum-stability dev
63
composer config prefer-stable true
- if: matrix.beta
64
+ if: matrix.dev
65
- run: composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
66
- run: vendor/bin/phpunit
0 commit comments