Skip to content

Implement compatibility with Laravel 11 #42

Implement compatibility with Laravel 11

Implement compatibility with Laravel 11 #42

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.2']
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