From ee28a3dfdad00d8a768a4a79bb72fe852522bd3b Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Thu, 4 Dec 2025 14:27:00 +0000 Subject: [PATCH 1/3] wip --- .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 d1255b0..ce008d4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - php: [8.4, 8.5] + php: [8.4] laravel: [12.*] stability: [prefer-lowest, prefer-stable] os: [ubuntu-latest] From 95b36c242dd0229fb2b40e06690f05d9e4b093a0 Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Thu, 4 Dec 2025 14:31:12 +0000 Subject: [PATCH 2/3] wip --- .github/workflows/tests.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ce008d4..d6f1b5a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,16 +11,17 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: php: [8.4] laravel: [12.*] stability: [prefer-lowest, prefer-stable] os: [ubuntu-latest] - include: - - os: windows-latest - php: 8.5 - laravel: 12.* - stability: prefer-stable +# include: +# - os: windows-latest +# php: 8.5 +# laravel: 12.* +# stability: prefer-stable name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} From 386e79a2d013a7b6b59968812b89ee5d21ca472c Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Thu, 4 Dec 2025 14:36:27 +0000 Subject: [PATCH 3/3] wip --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d6f1b5a..404d63b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,15 +13,15 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4] + php: [8.4, 8.5] laravel: [12.*] stability: [prefer-lowest, prefer-stable] os: [ubuntu-latest] -# include: -# - os: windows-latest -# php: 8.5 -# laravel: 12.* -# stability: prefer-stable + include: + - os: windows-latest + php: 8.5 + laravel: 12.* + stability: prefer-stable name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}