From ff31026046c00377c35445e34b066f796c7306cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gamez?= Date: Fri, 12 Sep 2025 15:58:11 +0200 Subject: [PATCH] Test with PHP 8.5 --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8244097..a52bfcc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ on: jobs: tests: name: PHP ${{ matrix.php }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: @@ -21,6 +21,9 @@ jobs: - "8.2" - "8.3" - "8.4" + include: + - php: "8.5" + composer-options: "--ignore-platform-reqs" steps: - name: Checkout code