Skip to content

Commit 314fa05

Browse files
fix: update testbench version for Laravel 12 compatibility
- Added testbench 10.* for Laravel 12 compatibility - Set fail-fast to false to see all test failures - Updated composer.json to include testbench ^8.0|^9.0|^10.0 Co-authored-by: Martin <[email protected]>
1 parent 0c0adfe commit 314fa05

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
timeout-minutes: 5
2020
strategy:
21-
fail-fast: true
21+
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest, windows-latest]
2424
php: [8.3, 8.2, 8.1]
2525
laravel: [12.*, 11.*, 10.*]
2626
stability: [prefer-stable]
2727
include:
2828
- laravel: 12.*
29-
testbench: 9.*
29+
testbench: 10.*
3030
- laravel: 11.*
3131
testbench: 9.*
3232
- laravel: 10.*

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"umpirsky/currency-list": "^v1.1.1"
4343
},
4444
"require-dev": {
45-
"orchestra/testbench": "^8.0|^9.0",
45+
"orchestra/testbench": "^8.0|^9.0|^10.0",
4646
"pestphp/pest": "^2.0"
4747
},
4848
"autoload": {

0 commit comments

Comments
 (0)