From 586b4db42897198c18abfd9b8d50f5fd9f4326e0 Mon Sep 17 00:00:00 2001 From: Lee Evans Date: Sat, 11 Jul 2026 20:28:20 +0100 Subject: [PATCH 1/2] chore: allow laravel 13 (testbench ^11) and cover it in CI Constraint widening only; no code changes. Co-Authored-By: Claude Fable 5 --- .github/workflows/run-tests.yml | 5 ++++- composer.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ae2aea0..8d4b1f7 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [ubuntu-latest] php: [8.3,8.4] - laravel: [11.*,12.*] + laravel: [11.*,12.*,13.*] stability: [ prefer-stable ] filament: [5.*] dependency-version: [ prefer-stable] @@ -25,6 +25,9 @@ jobs: - laravel: 12.* testbench: 10.* filament: 5.* + - laravel: 13.* + testbench: 11.* + filament: 5.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index 133d430..5786288 100644 --- a/composer.json +++ b/composer.json @@ -35,7 +35,7 @@ "larastan/larastan": "^3.0", "laravel/pint": "^1.0", "nunomaduro/collision": "^7.9|^8.8.0", - "orchestra/testbench": "^9.0|^10.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", "pestphp/pest": "^4.0", "pestphp/pest-plugin-arch": "^4.0", "pestphp/pest-plugin-laravel": "^4.0" From c33d9c95f2ebe8d2d13b764e7356aec66b9dbc3a Mon Sep 17 00:00:00 2001 From: Lee Evans Date: Sun, 12 Jul 2026 18:31:39 +0100 Subject: [PATCH 2/2] ci: disable fail-fast so one matrix leg cannot cancel the others Co-Authored-By: Claude Fable 5 --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8d4b1f7..7fbe668 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,7 @@ jobs: test: runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: false matrix: os: [ubuntu-latest] php: [8.3,8.4]