File tree 1 file changed +6
-2
lines changed 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 89
89
if : matrix.coverage
90
90
run : echo "COVERAGE=1" >> $GITHUB_ENV
91
91
- name : Update project dependencies
92
- run : composer update --no-progress --ansi
92
+ run : |
93
+ composer config extra.symfony.require ${{ matrix.symfony }}
94
+ composer update --no-progress --ansi
93
95
- name : Install PHPUnit
94
96
run : vendor/bin/simple-phpunit --version
95
97
- name : Clear test app cache
@@ -182,7 +184,9 @@ jobs:
182
184
composer-php${{ matrix.php }}-
183
185
continue-on-error : true
184
186
- name : Update project dependencies
185
- run : composer update --no-progress --ansi
187
+ run : |
188
+ composer config extra.symfony.require ${{ matrix.symfony }}
189
+ composer update --no-progress --ansi
186
190
- name : Clear test app cache
187
191
run : tests/Functional/app/bin/console cache:clear --ansi
188
192
- name : Enable code coverage
You can’t perform that action at this time.
0 commit comments