From b3d23bd4e246ab1963c1c7fc4e64bfef9ee44ce6 Mon Sep 17 00:00:00 2001 From: W0rma Date: Thu, 19 Sep 2024 08:29:48 +0200 Subject: [PATCH] Test against PHP 8.4 --- .github/workflows/continuous-integration.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 15944bd1e..0a4dd2efe 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -49,11 +49,20 @@ jobs: composer-flags: "" can-fail: false symfony-require: "6.4.*" + - php-version: "8.4" + composer-flags: "" + can-fail: false + symfony-require: "6.4.*" - php-version: "8.3" composer-flags: "" can-fail: false symfony-require: "6.4.*" remove-sensio-bundle: yes # Smoke test with SensioFrameworkExtraBundle removed on latest Symfony LTS + - php-version: "8.4" + composer-flags: "" + can-fail: false + symfony-require: "6.4.*" + remove-sensio-bundle: yes # Smoke test with SensioFrameworkExtraBundle removed on latest Symfony LTS - php-version: "8.2" composer-flags: "" can-fail: false @@ -63,6 +72,10 @@ jobs: composer-flags: "" can-fail: true # we don't want to fail the build if we are incompatible with the next (unstable) Symfony version remove-sensio-bundle: yes # SensioFrameworkExtraBundle is not compatible with Symfony 7.0 or later + - php-version: "8.4" + composer-flags: "" + can-fail: true # we don't want to fail the build if we are incompatible with the next (unstable) Symfony version + remove-sensio-bundle: yes # SensioFrameworkExtraBundle is not compatible with Symfony 7.0 or later env: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}