Skip to content

Commit

Permalink
Merge pull request #149 from thephpleague/symfony-63-ci
Browse files Browse the repository at this point in the history
Add Symfony 6.3 CI check
  • Loading branch information
tgalopin authored Aug 21, 2023
2 parents c056bef + 174a56e commit 32b26ec
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,20 @@ jobs:
composer require --no-update --dev symfony/framework-bundle=$SYMFONY_VERSION symfony/yaml=$SYMFONY_VERSION
composer update --prefer-dist --no-interaction --no-ansi --no-progress
php vendor/bin/simple-phpunit
tests-php-8-2-symfony-6-3:
runs-on: ubuntu-latest
env:
SYMFONY_VERSION: 6.3.*
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: none
- name: PHPUnit
run: |
composer require --no-update symfony/config=$SYMFONY_VERSION symfony/http-kernel=$SYMFONY_VERSION symfony/dependency-injection=$SYMFONY_VERSION symfony/options-resolver=$SYMFONY_VERSION
composer require --no-update --dev symfony/framework-bundle=$SYMFONY_VERSION symfony/yaml=$SYMFONY_VERSION
composer update --prefer-dist --no-interaction --no-ansi --no-progress
php vendor/bin/simple-phpunit

0 comments on commit 32b26ec

Please sign in to comment.