Skip to content

#38 fix: revert the middleware to check and block redundant routes #118

#38 fix: revert the middleware to check and block redundant routes

#38 fix: revert the middleware to check and block redundant routes #118

Workflow file for this run

name: PHPStan
on: [push, pull_request]
jobs:
phpstan:
runs-on: ${{ matrix.os }}
name: PHPStan - P${{ matrix.php }}
strategy:
matrix:
os: [ ubuntu-latest ]
php: [ '8.1', '8.2', '8.3', '8.4' ]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
composer install --no-interaction --no-progress --no-suggest
- name: Run PHPStan
run: |
composer analyse --error-format=github