Skip to content

Commit a955cc2

Browse files
committed
Update GitHub Actions for Laravel 11
1 parent 536af1d commit a955cc2

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: test
22

3-
on: [push]
3+
on:
4+
- push
45

56
jobs:
67
test:
@@ -10,12 +11,17 @@ jobs:
1011
fail-fast: true
1112
matrix:
1213
os: [ubuntu-latest]
13-
php: [8.1]
14-
laravel: [10.*]
14+
php: [8.1, '8.2']
15+
laravel: ['10.*', '11.*']
1516
stability: [prefer-lowest, prefer-stable]
1617
include:
1718
- laravel: 10.*
1819
testbench: 8.*
20+
- laravel: 11.*
21+
testbench: 9.*
22+
exclude:
23+
- laravel: 11.*
24+
php: 8.1
1925

2026
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2127

0 commit comments

Comments
 (0)