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 hailwood committed Mar 12, 2024
1 parent 83a92ab commit 4dc79e3
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
name: run-tests

on: [push]
on:
- push

jobs:
test:

runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [7.4]
laravel: [6.*]
php: [7.4, '8.2']
laravel: ['6.*', '11.*']
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 6.*
testbench: 4.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 7.4

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

Expand Down

0 comments on commit 4dc79e3

Please sign in to comment.