Skip to content

General Maintenance #167

General Maintenance

General Maintenance #167

Workflow file for this run

name: Static Analysis
on: pull_request
jobs:
phpstan:
name: phpstan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure PHP environment
uses: shivammathur/setup-php@v3
with:
php-version: '8.2'
- uses: ramsey/composer-install@v3
with:
composer-options: "--ignore-platform-reqs --optimize-autoloader"
- name: Run PHPStan
run: composer test:analysis