Skip to content

Laravel 11 support

Laravel 11 support #90

Workflow file for this run

name: "Tests"
on:
push:
branches:
- master
- '*.x'
pull_request:
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [8.1, 8.2, 8.3]
laravel: [10, 11]
exclude:
- php: '8.1'

Check failure on line 18 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 18, Col: 21): Matrix exclude key 'php' does not match any key within the matrix
laravel: 11
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
composer require "illuminate/support=^${{ matrix.laravel }}" --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: ./vendor/bin/pest