Skip to content

Commit cdebc22

Browse files
committed
Update GitHub Actions for Laravel 11
1 parent 523d68a commit cdebc22

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/run-tests.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,21 @@ name: Tests
22

33
on:
44
push:
5-
branches: [master]
5+
branches:
6+
- master
67
pull_request:
7-
branches: [master]
8+
branches:
9+
- master
810

911
jobs:
1012
test:
1113
runs-on: ubuntu-latest
14+
1215
strategy:
1316
fail-fast: true
1417
matrix:
1518
php: [8.0, 8.1, 8.2]
16-
laravel: [8.*, 9.*, 10.*]
19+
laravel: ['8.*', '9.*', '10.*', '11.*']
1720
include:
1821
- laravel: 8.*
1922
testbench: ^6.0
@@ -29,6 +32,10 @@ jobs:
2932
laravel: 10.*
3033
- php: 8.2
3134
laravel: 8.*
35+
- laravel: 11.*
36+
php: 8.0
37+
- laravel: 11.*
38+
php: 8.1
3239

3340
name: P${{ matrix.php }} - L${{ matrix.laravel }}
3441

0 commit comments

Comments
 (0)