Skip to content

Bring up to date with Laravel 11 #18

Bring up to date with Laravel 11

Bring up to date with Laravel 11 #18

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3, 8.4]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: sqlite, pdo_sqlite
tools: composer:v2
coverage: none
- name: Install dependencies
# TODO: remove --ignore-platform-reqs when we have stable v2 release
run: composer install --no-interaction --prefer-dist --optimize-autoloader --ignore-platform-reqs
- name: Execute tests
run: vendor/bin/pest