Skip to content

Draft: 3.x

Draft: 3.x #10

Workflow file for this run

name: Coding Styles
on:
pull_request:
jobs:
codingStyle:
name: Coding Style
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Configure PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
tools: composer:v2
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: PHPCsFixer
run: vendor/bin/php-cs-fixer fix --verbose --diff --dry-run
- name: PHPStan Analyse
run: php -d memory_limit=-1 vendor/bin/phpstan analyse -c phpstan.neon