From 3d1998428efca235d4d1cc512d418929ef19f570 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Thu, 17 Jul 2025 08:01:14 +0200 Subject: [PATCH] Simplify matrix --- .github/workflows/run-tests.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3f76e80..6094371 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -20,13 +20,18 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04, windows-2025] + os: [ubuntu-latest] php: [8.4, 8.3, 8.2] laravel: [~11.15, 12.x] stability: [prefer-lowest, prefer-stable] + include: + - os: windows-latest + php: 8.3 + laravel: 12.x + stability: prefer-stable steps: - name: Set git to use LF - if: ${{ matrix.os == 'windows-2025' }} + if: ${{ matrix.os == 'windows-latest' }} run: | git config --global core.autocrlf false git config --global core.eol lf