PHPCS Fixer update #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: Code Style | |
jobs: | |
php-cs-fixer: | |
runs-on: ubuntu-latest | |
container: | |
image: kirschbaumdevelopment/laravel-test-runner:8.0 | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Install PHP CS Fixer | |
run: | | |
composer global require friendsofphp/php-cs-fixer | |
- name: Check Coding Standards | |
run: php-cs-fixer fix --dry-run | |