Skip to content

add laravel 12 compatibility #1

add laravel 12 compatibility

add laravel 12 compatibility #1

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- 1.x
pull_request:
types: [ready_for_review, synchronize, opened]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.2, 8.3, 8.4]
laravel: [12.*]
name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
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
tools: composer:v2
coverage: xdebug
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Check Code Style
run: composer pint:check
- name: Check Static Analysis
run: composer phpstan
- name: Run PHPUnit Tests
run: ./vendor/bin/pest --coverage --min=100