dashboard gitlab tile #1
Workflow file for this run
This file contains hidden or 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
name: Check & fix styling | |
on: [push] | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: normalize php | |
run: php vendor/bin/phpcbf | |
- uses: stefanzweifel/git-auto-commit-action@v4.0.0 | |
with: | |
commit_message: Fix formatting with phpcbf |