Skip to content

Implement compatibility with Laravel 11 #40

Implement compatibility with Laravel 11

Implement compatibility with Laravel 11 #40

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
php-version: ['8.1', '8.2']
laravel-version: ['^9.0', '^10.0', '^11.0']
exclude:
- php-version: '8.1'
laravel-version: '^11.0'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Setup Laravel
run: composer require -W --dev laravel/laravel:${{ matrix.laravel-version }}
- name: Run tests
run: ./vendor/bin/phpunit