Skip to content

Commit c64ef75

Browse files
committed
minor #518 Run CI with various versions of Symfony (GromNaN)
This PR was merged into the 3.x branch. Discussion ---------- Run CI with various versions of Symfony | Q | A | ------------- | --- | Branch? | 3.x | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT Ensure the bundle is compatible with all the supported Symfony versions. Commits ------- f9e73bc Run CI with various versions of Symfony
2 parents 37347e9 + f9e73bc commit c64ef75

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,33 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
32-
monolog: [ '1.*', '2.*' ]
31+
php: [ '8.1', '8.2', '8.3', '8.4' ]
32+
monolog: [ '2.*' ]
33+
symfony: [ '6.4.*' ]
3334
include:
35+
- php: '7.2'
36+
symfony: '5.4.*'
37+
monolog: '1.*'
3438
- php: '7.4'
3539
deps: lowest
40+
symfony: '5.4.*'
3641
deprecations: max[self]=0
3742
- php: '8.1'
3843
monolog: '3.*'
44+
symfony: '6.4.*'
3945
- php: '8.2'
4046
monolog: '3.*'
47+
symfony: '7.3.*'
4148
- php: '8.3'
4249
monolog: '3.*'
50+
symfony: '7.3.*'
4351
- php: '8.4'
4452
deps: highest
4553
monolog: '3.*'
54+
symfony: '7.4.*'
55+
56+
env:
57+
SYMFONY_REQUIRE: ${{ matrix.symfony }}
4658

4759
steps:
4860
- name: Checkout

0 commit comments

Comments
 (0)