Skip to content

Commit 174a56e

Browse files
authored
Add Symfony 6.3 CI check
1 parent c056bef commit 174a56e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,20 @@ jobs:
123123
composer require --no-update --dev symfony/framework-bundle=$SYMFONY_VERSION symfony/yaml=$SYMFONY_VERSION
124124
composer update --prefer-dist --no-interaction --no-ansi --no-progress
125125
php vendor/bin/simple-phpunit
126+
127+
tests-php-8-2-symfony-6-3:
128+
runs-on: ubuntu-latest
129+
env:
130+
SYMFONY_VERSION: 6.3.*
131+
steps:
132+
- uses: actions/checkout@v3
133+
- uses: shivammathur/setup-php@v2
134+
with:
135+
php-version: '8.2'
136+
coverage: none
137+
- name: PHPUnit
138+
run: |
139+
composer require --no-update symfony/config=$SYMFONY_VERSION symfony/http-kernel=$SYMFONY_VERSION symfony/dependency-injection=$SYMFONY_VERSION symfony/options-resolver=$SYMFONY_VERSION
140+
composer require --no-update --dev symfony/framework-bundle=$SYMFONY_VERSION symfony/yaml=$SYMFONY_VERSION
141+
composer update --prefer-dist --no-interaction --no-ansi --no-progress
142+
php vendor/bin/simple-phpunit

0 commit comments

Comments
 (0)