Skip to content

Merge pull request #85 from bert-w/fix-spa-link-and-layout #62

Merge pull request #85 from bert-w/fix-spa-link-and-layout

Merge pull request #85 from bert-w/fix-spa-link-and-layout #62

Workflow file for this run

name: PHPStan
on:
push:
paths:
- '**.php'
- '.github/workflows/phpstan.yml'
- 'phpstan.neon.dist'
pull_request:
jobs:
phpstan:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.3, 8.2, 8.1]
laravel: [10.*]
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- 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: Install dependencies
run: |
composer update --prefer-dist --no-interaction
- name: List Installed Dependencies
run: composer show -D
- name: Run PHPStan
run: vendor/bin/phpstan --error-format=github