From 000097a2673e52f8a9ace8fc25e7719651809b83 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 16 Jan 2024 14:38:43 +0100 Subject: [PATCH] Update the CI setup - Add testing on PHP 8.3 - Add a job with the Symfony 6 LTS --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 637a4b5..b483d44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - uses: shivammathur/setup-php@v2 with: coverage: none - php-version: '8.1' + php-version: '8.3' - run: composer validate --strict --no-check-lock tests: @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] + php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] name_suffix: [ '' ] composer_flags: [ '' ] symfony_version: [ '' ] @@ -40,6 +40,10 @@ jobs: name_suffix: ' (Symfony 5)' composer_flags: '' symfony_version: '5.4.*' + - php: '8.2' + name_suffix: ' (Symfony 6)' + composer_flags: '' + symfony_version: '6.4.*' steps: - uses: actions/checkout@v3