# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
on:
- push
- pull_request
name: CI
jobs:
coding-guidelines:
name: Coding Guidelines
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Run friendsofphp/php-cs-fixer
run: php7.3 tools/php-cs-fixer fix --diff-format=udiff --dry-run --show-progress=dots --using-cache=no --verbose