From feb33b25fdd2bd6fabb4dc1373f978e46ef4f763 Mon Sep 17 00:00:00 2001 From: Klaus Purer Date: Sat, 28 Dec 2024 17:35:11 +0100 Subject: [PATCH] chore(github): Enable PHP 8.4 testing --- .github/workflows/testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e5bd900a..e5a44484 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -7,12 +7,12 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] + php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] extra-tests: ['0'] - # We only need to run PHPStan and Druapl core regression tests once on + # We only need to run PHPStan and Drupal core regression tests once on # the latest PHP version. include: - - php-versions: '8.3' + - php-versions: '8.4' extra-tests: '1' steps: - name: Checkout Coder