Skip to content

Fix exhaustive memory consumption #433

Fix exhaustive memory consumption

Fix exhaustive memory consumption #433

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
phpstan:
name: phpstan static code analysis
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
php-version: '7.4'
- os: ubuntu-latest
php-version: '8.0'
- os: ubuntu-latest
php-version: '8.1'
- os: ubuntu-latest
php-version: '8.2'
- os: ubuntu-latest
php-version: '8.3'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get tags
run: git fetch --tags origin
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none # disable xdebug, pcov
- name: Composer install
uses: ramsey/composer-install@v2
with:
composer-options: '--ansi --prefer-dist'
- name: Run phpstan analysis
run: vendor/bin/phpstan analyse --ansi