From b2a2470235f14e8865e4ddd1806cb135acf5216a Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Wed, 7 Jan 2026 11:13:54 -0800 Subject: [PATCH] chore: add PHP 8.5 to testing matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6e0cd3c1..2d6d57bc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ "8.0", "8.1", "8.2", "8.3", "8.4" ] + php: [ "8.0", "8.1", "8.2", "8.3", "8.4", "8.5" ] name: PHP ${{matrix.php }} Unit Test steps: - uses: actions/checkout@v2