Skip to content

Several improvements and additions to documentation, workflow configuration, and project metadata #21

Several improvements and additions to documentation, workflow configuration, and project metadata

Several improvements and additions to documentation, workflow configuration, and project metadata #21

Workflow file for this run

name: PHPStan
on:
pull_request:
branches: [ "master" ]
workflow_dispatch:
concurrency:
group: phpstan-${{ github.ref }}
cancel-in-progress: true
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.3"
coverage: none
- name: Validate composer.json
run: composer validate --no-interaction
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Run PHPStan
run: vendor/bin/phpstan analyse -c phpstan.neon --no-progress --memory-limit=1G