From 573c9f3f573630c7ecb823f201fdbcfcde256ec4 Mon Sep 17 00:00:00 2001 From: Pieter Willekens Date: Wed, 11 Feb 2026 11:45:28 +0100 Subject: [PATCH] ci: add PHP 8.5 to integration test matrix (#1760) The unit test matrix already includes PHP 8.5 but it was missing from the integration tests. --- .github/workflows/run-integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-integration-tests.yml b/.github/workflows/run-integration-tests.yml index 4fbdb14..4af0db6 100644 --- a/.github/workflows/run-integration-tests.yml +++ b/.github/workflows/run-integration-tests.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2] + php: [8.5, 8.4, 8.3, 8.2] laravel: [11.x, 12.x] name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}