Skip to content

Support Laravel 11

Support Laravel 11 #4

Workflow file for this run

name: tests
on:
workflow_dispatch:
push:
pull_request:
jobs:
linux_tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
laravel: ['^10', '^11']
php: ['8.2', '8.3']
stability: ['prefer-lowest', 'prefer-stable']
name: Laravel ${{ matrix.laravel }} - PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, dom, fileinfo
tools: composer:v2
coverage: none
- name: Check for syntax errors in PHP files
run: find ./ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l
- name: Check composer files
run: composer validate --strict
- name: Lock Laravel Version
run: composer require "illuminate/contracts=${{ matrix.laravel }}" --no-install --no-interaction --no-progress
- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
- name: Execute tests in default environment
run: vendor/bin/phpunit