Skip to content

Commit 293cbd0

Browse files
committed
Update GitHub Actions for Laravel 11
1 parent 61430b3 commit 293cbd0

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,33 @@ 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
pest:
1113
name: Tests (Pest) L${{ matrix.laravel }}
14+
1215
runs-on: ubuntu-latest
16+
1317
strategy:
1418
matrix:
1519
os: [ubuntu-latest, windows-latest]
16-
laravel: [ 8, 9 ]
17-
php: [ 8.1 ]
20+
laravel: [8, 9, '11']
21+
php: [8.1, '8.2']
1822
stability: [prefer-lowest, prefer-stable]
23+
exclude:
24+
- laravel: '11'
25+
php: 8.1
1926

2027
steps:
2128
- uses: actions/checkout@v2
29+
2230
- name: Install composer dependencies
2331
run: composer require "illuminate/support:^${{ matrix.laravel }}.0"
32+
2433
- name: Run tests
25-
run: vendor/bin/pest
34+
run: vendor/bin/pest

0 commit comments

Comments
 (0)