Skip to content

Commit 42f4238

Browse files
committed
Update GitHub Actions for Laravel 11
1 parent 8acf681 commit 42f4238

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,33 @@ on:
44
push:
55
branches:
66
- main
7-
87
pull_request:
9-
types: [opened, synchronize, reopened]
8+
types:
9+
- opened
10+
- synchronize
11+
- reopened
1012

1113
jobs:
1214
test:
1315
runs-on: ubuntu-latest
16+
1417
if: "!contains(github.event.head_commit.message, 'ci skip')"
18+
1519
strategy:
1620
fail-fast: false
1721
matrix:
18-
php: [ 7.3, 7.4, 8.0, 8.1 ]
19-
laravel: [ 8.*, 9.* , 10.*]
20-
dependency-version: [ prefer-lowest, prefer-stable ]
22+
php: [7.3, 7.4, 8.0, 8.1, '8.2']
23+
laravel: ['8.*', '9.*', '10.*', '11.*']
24+
dependency-version: [prefer-lowest, prefer-stable]
2125
include:
2226
- laravel: 10.*
2327
testbench: 8.*
24-
2528
- laravel: 8.*
2629
testbench: 6.*
27-
2830
- laravel: 9.*
2931
testbench: 7.*
30-
32+
- laravel: 11.*
33+
testbench: 9.*
3134
exclude:
3235
- laravel: 10.*
3336
php: 7.3
@@ -37,13 +40,19 @@ jobs:
3740
php: 8.0
3841
- laravel: 9.*
3942
php: 7.3
40-
4143
- laravel: 9.*
4244
php: 7.4
43-
4445
- laravel: 8.*
4546
php: 8.1
4647
dependency-version: prefer-lowest
48+
- laravel: 11.*
49+
php: 7.3
50+
- laravel: 11.*
51+
php: 7.4
52+
- laravel: 11.*
53+
php: 8.0
54+
- laravel: 11.*
55+
php: 8.1
4756

4857
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
4958

0 commit comments

Comments
 (0)