From cc01bb3e318133cd03840e9bb8fcac3f4d47828d Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Tue, 26 Aug 2025 07:51:06 +0200 Subject: [PATCH] [1.x] Run tests on PHP 8.4 and update test environment Builds on #240 and #218 by backporting #233 to v1. --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65fe5d47..8a15fb4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,11 @@ on: jobs: PHPUnit: name: PHPUnit (PHP ${{ matrix.php }}) - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: php: + - 8.4 - 8.3 - 8.2 - 8.1 @@ -39,13 +40,13 @@ jobs: PHPUnit-macOS: name: PHPUnit (macOS) - runs-on: macos-12 + runs-on: macos-14 continue-on-error: true steps: - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.4 coverage: xdebug ini-file: development - run: composer install