Skip to content

Commit be2b3cb

Browse files
committed
Update GitHub Actions for Laravel 11
1 parent cb3ec48 commit be2b3cb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/run-tests.yml

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

3-
on: [push, pull_request]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68
test:
79
runs-on: ${{ matrix.os }}
10+
811
strategy:
912
fail-fast: true
1013
matrix:
1114
os: [ubuntu-latest]
1215
php: [8.2, 8.1]
13-
laravel: [10.*]
16+
laravel: ['10.*', '11.*']
1417
stability: [prefer-lowest, prefer-stable]
1518
include:
1619
- laravel: 10.*
1720
testbench: 8.*
1821
pest: ^2.13
1922
pest_laravel: ^2.0
23+
exclude:
24+
- laravel: 11.*
25+
php: 8.1
2026

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

0 commit comments

Comments
 (0)