Skip to content

Use Doctrine ClassUtils instead of direct proxy check. #11

Use Doctrine ClassUtils instead of direct proxy check.

Use Doctrine ClassUtils instead of direct proxy check. #11

Workflow file for this run

name : Test Suite
on : [ push, pull_request, workflow_dispatch ]
jobs :
test_suite :
runs-on : ubuntu-latest
strategy :
matrix :
php-version : [ '8.0', '8.1' ]
steps :
- uses : actions/checkout@v1
- name : Setup PHP
uses : shivammathur/setup-php@v2
with :
php-version : ${{ matrix.php-version }}
tools : composer:v2, cs2pr
- name : Run Composer install
run : |
composer install --no-interaction
- name : Run PHP Linter
run : |
vendor/bin/parallel-lint . --exclude vendor --checkstyle | cs2pr
- name : Run PHPStan
run : |
vendor/bin/phpstan analyze --error-format=checkstyle | cs2pr