Skip to content

Commit b52f427

Browse files
committed
feat(Work Flows) separated symfony integrations.
1 parent 0f467a4 commit b52f427

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/symfony.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
symfony-versions: ['3.4.*', '4.4.*', '5.1', '5.2']
16+
symfony-versions: ['4.4.*', '5.1', '5.2']
1717
php: ['7.2', '7.3', '7.4', '8.0']
18+
include:
19+
- description: '3.4.*'
20+
php: '7.2'
21+
symfony_constraint: 3.4.*
22+
env:
23+
SYMFONY_DEPRECATIONS_HELPER: disabled
1824

1925
name: PHP ${{ matrix.php }} Symfony ${{ matrix.symfony-versions }}
2026
steps:
@@ -34,11 +40,6 @@ jobs:
3440
sed -ri '/symfony\/(monolog-bundle|phpunit-bridge|messenger)/! s/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony-versions }}'"/' composer.json;
3541
3642
- run: composer remove --dev symfony/messenger --no-update
37-
env:
38-
SYMFONY_DEPRECATIONS_HELPER: disabled
39-
if: matrix.symfony-versions == '3.4.*'
40-
41-
- run: composer remove --dev friendsofphp/php-cs-fixer --no-update
4243
if: matrix.symfony-versions == '3.4.*'
4344

4445
- run: composer update --no-progress --ansi

0 commit comments

Comments
 (0)