From bda2ec1f8f5d934bb10f26f2c99044a23b708022 Mon Sep 17 00:00:00 2001 From: Stephen Williamson Date: Sat, 13 Jun 2026 13:11:34 -0400 Subject: [PATCH] Remove Windows from test matrix --- .github/workflows/run-tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index eef708b..1154c7a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,11 +8,10 @@ on: jobs: test: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest strategy: fail-fast: true matrix: - os: [ubuntu-latest, windows-latest] php: [8.5, 8.4, 8.3] laravel: [13.*, 12.*, 11.*] stability: [prefer-stable] @@ -24,7 +23,7 @@ jobs: - laravel: 11.* testbench: 9.* - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} + name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} steps: - name: Checkout code