Skip to content

Fix CI failures: PHPStan, tests, and CS fixer after recent guards #194

Fix CI failures: PHPStan, tests, and CS fixer after recent guards

Fix CI failures: PHPStan, tests, and CS fixer after recent guards #194

name: Static Analysis
on:
push:
pull_request:
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.3"
extensions: curl, json, mbstring, openssl
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Run PHPStan
run: vendor/bin/phpstan analyse --memory-limit=512M