Skip to content

RequestSchema accept both a path and an array of item #71

RequestSchema accept both a path and an array of item

RequestSchema accept both a path and an array of item #71

Workflow file for this run

name: PHPStan
on:
push:
branches: [5.0, 5.1]
pull_request:
branches: [5.0, 5.1]
workflow_dispatch:
jobs:
PHPStan:
strategy:
fail-fast: false
matrix:
php_versions: ['8.1', '8.2', '8.3']
runs-on: ubuntu-latest
name: PHPStan - ${{ matrix.php_versions }}
steps:
- uses: actions/checkout@v3
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_versions }}
- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run PHPStan
run: vendor/bin/phpstan analyse src/{Alert,Bakery,Cache,Config,Event,Fortress,I18n,Routes,ServicesProvider,Session,Sprinkle,UniformResourceLocator} tests/{Alert,Bakery,Cache,Config,Event,Fortress,Routes,Session,Sprinkle,UniformResourceLocator}