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 authored and JaZo committed Mar 27, 2024
1 parent 672329d commit 6439d73
Showing 1 changed file with 31 additions and 11 deletions.
42 changes: 31 additions & 11 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Run tests

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

jobs:
php-tests:
Expand All @@ -9,22 +11,40 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1' ]
laravel: [ '6.*', '7.*', '8.*', '9.*', '10.*' ]
stability: [ prefer-lowest, prefer-stable ]
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*']
stability: [prefer-lowest, prefer-stable]
exclude:
- laravel: '6.*'
- laravel: 6.*
php: '8.1'
- laravel: '7.*'
- laravel: 6.*
php: '8.2'
- laravel: 6.*
php: '8.3'
- laravel: 7.*
php: '8.1'
- laravel: '8.*'
php: '8.1'
- laravel: '9.*'
- laravel: 7.*
php: '8.2'
- laravel: 7.*
php: '8.3'
- laravel: 8.*
php: '8.2'
- laravel: 8.*
php: '8.3'
- laravel: 9.*
php: '7.4'
- laravel: 9.*
php: '8.3'
- laravel: 10.*
php: '7.4'
- laravel: '10.*'
- laravel: 10.*
php: '8.0'
- laravel: 11.*
php: '7.4'
- laravel: '10.*'
- laravel: 11.*
php: '8.0'
- laravel: 11.*
php: '8.1'

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

Expand Down

0 comments on commit 6439d73

Please sign in to comment.