We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef890b8 commit 3d19984Copy full SHA for 3d19984
.github/workflows/run-tests.yml
@@ -20,13 +20,18 @@ jobs:
20
strategy:
21
fail-fast: false
22
matrix:
23
- os: [ubuntu-22.04, windows-2025]
+ os: [ubuntu-latest]
24
php: [8.4, 8.3, 8.2]
25
laravel: [~11.15, 12.x]
26
stability: [prefer-lowest, prefer-stable]
27
+ include:
28
+ - os: windows-latest
29
+ php: 8.3
30
+ laravel: 12.x
31
+ stability: prefer-stable
32
steps:
33
- name: Set git to use LF
- if: ${{ matrix.os == 'windows-2025' }}
34
+ if: ${{ matrix.os == 'windows-latest' }}
35
run: |
36
git config --global core.autocrlf false
37
git config --global core.eol lf
0 commit comments