Skip to content

Commit a43dce1

Browse files
committed
Update GitHub Actions for Laravel 12
1 parent 0eb9ea0 commit a43dce1

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,22 @@ name: run-tests
22

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

911
jobs:
1012
test:
1113
runs-on: ${{ matrix.os }}
14+
1215
strategy:
1316
fail-fast: true
1417
matrix:
1518
os: [ubuntu-latest]
1619
php: [8.3, 8.2, 8.1, 8.0, 7.4]
17-
laravel: [11.*, 10.*, 9.*, 8.*]
20+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
1821
stability: [prefer-lowest, prefer-stable]
1922
include:
2023
- laravel: 11.*
@@ -42,6 +45,12 @@ jobs:
4245
php: 7.4
4346
- laravel: 9.*
4447
php: 7.4
48+
- laravel: 12.*
49+
php: 8.1
50+
- laravel: 12.*
51+
php: 8.0
52+
- laravel: 12.*
53+
php: 7.4
4554

4655
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
4756

0 commit comments

Comments
 (0)