Skip to content

Draft: 3.x

Draft: 3.x #11

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: composer csFixer
- name: PHPStan Analyse
run: composer phpstan
- name: Rector
run: composer rector