Skip to content

Laravel 11.x support #215

Laravel 11.x support

Laravel 11.x support #215

Workflow file for this run

name: Laravel
on: [push, pull_request]
jobs:
laravel-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ubuntu-latest

Check failure on line 11 in .github/workflows/laravel.yml

View workflow run for this annotation

GitHub Actions / Laravel

Invalid workflow file

The workflow is not valid. .github/workflows/laravel.yml (Line: 11, Col: 13): Unexpected value 'ubuntu-latest' .github/workflows/laravel.yml (Line: 14, Col: 20): Unexpected value 'prefer-stable'
php: [ 8.1, 8.2 ]
laravel: [ 10.*, 11.* ]
stability: prefer-stable
include:
- laravel: [ 10.*, 11.* ]
testbench: [ ^8.0, ^9.0 ]
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.composer/cache/files
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: vendor/bin/phpunit