Skip to content

Commit b75e974

Browse files
committed
Update GitHub Actions for Laravel 12
1 parent d95c793 commit b75e974

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,28 @@ name: run-tests
22

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

911
jobs:
1012
test:
1113
runs-on: ${{ matrix.os }}
14+
1215
strategy:
1316
fail-fast: true
1417
matrix:
1518
os: [ubuntu-latest, windows-latest]
16-
# run on php 8.2
1719
php: [8.2]
18-
# run on laravel 10
19-
laravel: [10.*]
20+
laravel: ['10.*', '12.*']
2021
stability: [prefer-stable]
2122
include:
2223
- laravel: 10.*
2324
testbench: 8.*
25+
- laravel: 12.*
26+
testbench: 10.*
2427

2528
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2629

0 commit comments

Comments
 (0)