Skip to content

Commit

Permalink
Update GitHub Actions for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift committed Feb 27, 2024
1 parent f213d4d commit 6f4fb3b
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
name: run-tests

on: [push, pull_request]
on:
- push
- pull_request

jobs:
test:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [7.2, 7.3, 7.4, 8.0]
laravel: [6, 7, 8]
php: [7.2, 7.3, 7.4, 8.0, '8.2']
laravel: [6, 7, 8, '11']
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8
Expand All @@ -19,6 +22,8 @@ jobs:
testbench: 5.*
- laravel: 6
testbench: 4.*
- laravel: '11'
testbench: 9.*
exclude:
- laravel: 6
php: 8.0
Expand All @@ -31,6 +36,14 @@ jobs:
- laravel: 8
php: 8.0
dependency-version: prefer-lowest
- laravel: '11'
php: 7.2
- laravel: '11'
php: 7.3
- laravel: '11'
php: 7.4
- laravel: '11'
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }}.* - ${{ matrix.dependency-version }} - ${{ matrix.os }}

Expand Down

0 comments on commit 6f4fb3b

Please sign in to comment.