Skip to content

Commit ab3bd32

Browse files
Test against Symfony 8 in CI
composer.json already allows symfony/http-foundation ^8 but the matrix never exercised it. Symfony 8 requires PHP >= 8.4, hence the exclusions for PHP 8.1-8.3.
1 parent d280576 commit ab3bd32

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/unit-tests.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@ jobs:
1212
strategy:
1313
matrix:
1414
php-version: [8.1, 8.2, 8.3, 8.4]
15-
symfony-version: [^5, ^6, ^7]
15+
symfony-version: [^5, ^6, ^7, ^8]
1616
glide-version: [^2, ^3]
1717
dependencies: [lowest, stable]
1818
exclude:
1919
- php-version: 8.1
2020
symfony-version: ^7
21+
- php-version: 8.1
22+
symfony-version: ^8
23+
- php-version: 8.2
24+
symfony-version: ^8
25+
- php-version: 8.3
26+
symfony-version: ^8
2127
steps:
2228
- name: Checkout
2329
uses: actions/checkout@v4

0 commit comments

Comments
 (0)