Skip to content

Commit e5d7bcf

Browse files
committed
Add Laravel 9 to run-test matrix and install testbench
1 parent 9236fb9 commit e5d7bcf

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
name: run-tests
22

3-
on: [push, pull_request]
3+
on: [ push, pull_request ]
44

55
jobs:
66
test:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
fail-fast: true
1010
matrix:
11-
os: [ubuntu-latest]
12-
php: [8.1]
13-
laravel: [10.*]
14-
dependency-version: [prefer-lowest, prefer-stable]
11+
os: [ ubuntu-latest ]
12+
php: [ 8.1 ]
13+
laravel: [ 9.*, 10.* ]
14+
dependency-version: [ prefer-lowest, prefer-stable ]
1515
include:
16+
- laravel: 9.*
17+
testbench: 7.*
1618
- laravel: 10.*
1719
testbench: 8.*
1820

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"php": "^8.1",
1616
"ext-simplexml": "*",
1717
"guzzlehttp/guzzle": "^7.1",
18-
"illuminate/notifications": "^9.0 || ^10.0",
18+
"illuminate/notifications": "9.0 || ^10.0",
1919
"illuminate/support": "^9.0 || ^10.0"
2020
},
2121
"require-dev": {
2222
"friendsofphp/php-cs-fixer": "^3.6",
2323
"mockery/mockery": "^1.5",
24-
"orchestra/testbench": "^7.0",
25-
"phpunit/phpunit": "^9.5"
24+
"orchestra/testbench": "^v8.0.0",
25+
"phpunit/phpunit": "^9.6"
2626
},
2727
"config": {
2828
"sort-packages": true

0 commit comments

Comments
 (0)