Skip to content

Commit 7f2d388

Browse files
committed
Fix
1 parent 4213e7e commit 7f2d388

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ jobs:
1919
include:
2020
- laravel: 11.*
2121
testbench: ^9.0
22+
pest: ^2.0
23+
phpunit: ^10.0
2224
- laravel: 12.*
2325
testbench: ^10.0
26+
pest: ^3.0
27+
phpunit: ^11.0
2428

2529
name: PHP${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2630

@@ -42,7 +46,7 @@ jobs:
4246
4347
- name: Install dependencies
4448
run: |
45-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
49+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "pestphp/pest:${{ matrix.pest }}" "pestphp/pest-plugin-laravel:${{ matrix.pest }}" "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update
4650
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4751
4852
- name: Execute tests

0 commit comments

Comments
 (0)