Skip to content

Markdown sanitization for PDF generation and documentation #16

Markdown sanitization for PDF generation and documentation

Markdown sanitization for PDF generation and documentation #16

Workflow file for this run

name: PHPStan
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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