From 08100a5268f09f0d368e4e7142715c655128fc4f Mon Sep 17 00:00:00 2001 From: COil Date: Mon, 26 Dec 2022 18:11:06 +0100 Subject: [PATCH] ci: added Symfony 6.2 --- .github/workflows/test.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ff5e566..5c8a2fc 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -72,3 +72,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-1-symfony-6-2: + runs-on: ubuntu-latest + env: + SYMFONY_VERSION: 6.2.* + steps: + - uses: actions/checkout@master + - uses: shivammathur/setup-php@v2 + with: + php-version: '8.1' + 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