Skip to content

Commit 6094726

Browse files
committed
minor #67 Update test matrix (ajgarlag)
This PR was merged into the 0.1-dev branch. Discussion ---------- Update test matrix Update the tests matrix with the latest versions of PHP and Symfony The PHP 8.1 docker image is not available yet and support of PHP 7.3 will be dropped in 6 days. I will update the PR and I will mark it as ready for review when this happens. Commits ------- bd07822 Update test matrix
2 parents 0308ee7 + bd07822 commit 6094726

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/unit-tests.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,30 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
#Stable supported versions
13-
php: ['7.3', '7.4', '8.0', '8.1']
14-
symfony: ['5.3.*', '5.4.*']
13+
php: ['7.4', '8.0', '8.1']
14+
symfony: ['5.3.*', '5.4.*', '6.0.*']
1515
composer-flags: ['--prefer-stable']
1616
can-fail: [false]
17+
exclude:
18+
- php: '7.4'
19+
symfony: '6.0.*'
1720
include:
1821
# Lowest supported versions
1922
- php: '7.2'
2023
symfony: '5.3.*'
2124
composer-flags: '--prefer-stable --prefer-lowest'
2225
can-fail: false
23-
# Symfony 6
24-
- php: '8.0'
25-
symfony: '6.0.*'
26+
# EOL PHP versions
27+
- php: '7.2'
28+
symfony: '5.4.*'
2629
composer-flags: '--prefer-stable'
2730
can-fail: false
28-
- php: '8.1'
29-
symfony: '6.0.*'
31+
- php: '7.3'
32+
symfony: '5.4.*'
3033
composer-flags: '--prefer-stable'
3134
can-fail: false
3235
# Development versions
33-
- php: '8.1-rc'
36+
- php: '8.1'
3437
symfony: '6.1.x-dev'
3538
composer-flags: ''
3639
can-fail: false

0 commit comments

Comments
 (0)