Skip to content

Fix CI, static analysis, and documentation updates #9

Fix CI, static analysis, and documentation updates

Fix CI, static analysis, and documentation updates #9

Workflow file for this run

name: PHPStan
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: intl, mbstring
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Prepare PHPStan temp directory
run: mkdir -p build build/phpstan-tmp
- name: Run PHPStan
run: vendor/bin/phpstan analyse -c phpstan.neon.dist --memory-limit=512M