Skip to content

Commit 5c2ecb4

Browse files
committed
Fix orchestra for Laravel 12
1 parent 44e0f14 commit 5c2ecb4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: .github/workflows/run-tests.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
php: [8.3, 8.4]
1313
laravel: ['11.*', '12.*']
1414
stability: [prefer-lowest, prefer-stable]
15+
include:
16+
- laravel: 11.*
17+
testbench: ^9.0
18+
- laravel: 12.*
19+
testbench: ^10.0
1520

1621
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
1722

@@ -33,7 +38,7 @@ jobs:
3338
3439
- name: Install dependencies
3540
run: |
36-
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
41+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
3742
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
3843
3944
- name: Execute tests

0 commit comments

Comments
 (0)