From dd286991ae54ea8963df740a1784549b8f71e7a4 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Sun, 23 Nov 2025 06:07:24 -0500 Subject: [PATCH] build(meta): test on php 8.5 --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4937678..7a419fa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,13 +9,15 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.2, 8.3, 8.4] + php: [8.2, 8.3, 8.4, 8.5] laravel: [11, 12] pest: [3, 4] dependency-version: [prefer-lowest, prefer-stable] exclude: - php: 8.2 pest: 4 + - php: 8.5 + pest: 3 name: Tests P${{ matrix.php }} - P${{ matrix.pest }} - L${{ matrix.laravel }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} steps: