Skip to content

v2.7

v2.7 #41

Workflow file for this run

name: Check Style
on: [push, pull_request]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Only fetch Style PHP submodule
run: git submodule update --init -- .style
- name: Install latest PHP-CS-Fixer
run: wget https://cs.symfony.com/download/php-cs-fixer-v2.phar
- name: Run Checks
run: PHP_CS_FIXER_IGNORE_ENV=1 php php-cs-fixer-v2.phar fix --config=.style/.php_cs -v --dry-run --allow-risky=yes .