Skip to content

Commit b1617a0

Browse files
committed
Update run-tests.yml
1 parent 21c5635 commit b1617a0

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,21 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
os: [ubuntu-latest, windows-latest]
13-
php: [8.4, 8.3 , 8.2]
14-
laravel: [12.*, 11.*, 10.*]
15-
stability: [prefer-lowest, prefer-stable]
12+
os: [ubuntu-latest]
1613
include:
17-
- laravel: 12.*
14+
- php: 8.4
15+
laravel: 12.*
1816
testbench: 10.*
19-
- laravel: 11.*
17+
18+
- php: 8.3
19+
laravel: 11.*
2020
testbench: 9.*
21-
- laravel: 10.*
22-
testbench: 8.*
2321

22+
- php: 8.2
23+
laravel: 10.*
24+
testbench: 8.*
2425

25-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
26+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
2627

2728
steps:
2829
- name: Checkout code
@@ -38,7 +39,7 @@ jobs:
3839
- name: Install dependencies
3940
run: |
4041
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
41-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
42+
composer update --prefer-dist --no-interaction
4243
4344
- name: Execute tests
4445
run: vendor/bin/pest --ci

0 commit comments

Comments
 (0)