Skip to content

Commit 02d8318

Browse files
committed
Update GitHub Actions for Laravel 11
1 parent b869518 commit 02d8318

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
@@ -6,25 +6,31 @@ on:
66
- master
77
pull_request:
88
branches:
9-
- "*"
9+
- *
1010
schedule:
1111
- cron: '0 0 * * *'
1212

1313
jobs:
1414
php-tests:
1515
runs-on: ubuntu-20.04
16+
1617
timeout-minutes: 15
18+
1719
env:
1820
COMPOSER_NO_INTERACTION: 1
1921

2022
strategy:
2123
matrix:
2224
php: [8.2, 8.1, 8.0]
23-
laravel: [10.*, 9.*]
25+
laravel: ['9.*', '10.*', '11.*']
2426
dependency-version: [prefer-lowest, prefer-stable]
2527
exclude:
2628
- php: 8.0
2729
laravel: 10.*
30+
- laravel: 11.*
31+
php: 8.1
32+
- laravel: 11.*
33+
php: 8.0
2834

2935
steps:
3036
- name: Checkout code

0 commit comments

Comments
 (0)