Skip to content

Commit 853ffa4

Browse files
committed
Update GitHub Actions for Laravel 12
1 parent 1c816bc commit 853ffa4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ on:
77
jobs:
88
tests:
99
runs-on: ${{ matrix.os }}
10+
1011
strategy:
1112
fail-fast: true
1213
matrix:
1314
os: [ubuntu-latest]
1415
php: ['8.0', 8.1, 8.2, 8.3]
15-
laravel: [9.*, 10.*, 11.*]
16+
laravel: ['9.*', '10.*', '11.*', '12.*']
1617
dependency-version: [prefer-lowest, prefer-stable]
1718
exclude:
1819
- laravel: 9.*
@@ -27,6 +28,10 @@ jobs:
2728
php: '8.0'
2829
- laravel: 11.*
2930
php: 8.1
31+
- laravel: 12.*
32+
php: '8.0'
33+
- laravel: 12.*
34+
php: 8.1
3035

3136
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3237

@@ -46,5 +51,6 @@ jobs:
4651
run: |
4752
composer require "illuminate/console:${{ matrix.laravel }}" "illuminate/mail:${{ matrix.laravel }}" "illuminate/view:${{ matrix.laravel }}" --no-interaction --no-update
4853
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress
54+
4955
- name: Execute tests
5056
run: vendor/bin/pest

0 commit comments

Comments
 (0)