Skip to content

Commit ca698d6

Browse files
author
kreemer
committed
Fix build with new symfony versions
1 parent 6fe1bf4 commit ca698d6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
php: [ '8.1', '8.2' ]
15-
symfony: [ '6.3' ]
15+
symfony: [ '6.3', '6.4', '7.0' ]
16+
exclude:
17+
- php: '8.1'
18+
symfony: '7.0'
1619
steps:
1720
- name: Checkout
1821
uses: actions/checkout@v3
@@ -43,4 +46,4 @@ jobs:
4346
composer update --prefer-dist --no-progress
4447
4548
- name: Run tests
46-
run: vendor/bin/phpunit --coverage-text
49+
run: vendor/bin/phpunit --coverage-text

0 commit comments

Comments
 (0)