Skip to content

Commit 85e4e20

Browse files
committed
Fix: run-tests workflow should now include Laravel 10
1 parent 31da2ff commit 85e4e20

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,20 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.2, 8.1, 8.0]
17-
laravel: [9.*, 8.*, 7.*]
17+
laravel: [10.*, 9.*, 8.*, 7.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 10.*
21+
testbench: 8.*
2022
- laravel: 9.*
2123
testbench: 7.*
2224
- laravel: 8.*
2325
testbench: 6.23
2426
- laravel: 7.*
2527
testbench: 5.*
2628
exclude:
29+
- laravel: 10.*
30+
php: 8.0
2731
- laravel: 7.*
2832
php: 8.1
2933
- laravel: 7.*

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"require-dev": {
2525
"friendsofphp/php-cs-fixer": "^3.2",
26-
"orchestra/testbench": "^6.0|^7.0",
26+
"orchestra/testbench": "^6.0|^7.0|^8.0",
2727
"phpunit/phpunit": "^9.4"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)