Skip to content

Commit b04836f

Browse files
authored
WIP
1 parent 4e00558 commit b04836f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
1919
php: [8.3, 8.2, 8.1]
20-
laravel: ['10.*', '9.*']
21-
stability: [prefer-stable]
20+
laravel: ['9.*', '10.*', '11.*']
21+
dependency-version: [prefer-stable]
2222
include:
2323
- laravel: 9.*
2424
testbench: 7.*
@@ -30,8 +30,7 @@ jobs:
3030
- laravel: 11.*
3131
php: 8.1
3232

33-
34-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
33+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3534

3635
steps:
3736
- name: Checkout code
@@ -52,7 +51,7 @@ jobs:
5251
- name: Install dependencies
5352
run: |
5453
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
55-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --dev
54+
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
5655
5756
- name: Execute tests
58-
run: vendor/bin/phpunit
57+
run: composer run-script test

0 commit comments

Comments
 (0)