Skip to content

Merge pull request #127 from guanguans/dependabot/github_actions/truf… #544

Merge pull request #127 from guanguans/dependabot/github_actions/truf…

Merge pull request #127 from guanguans/dependabot/github_actions/truf… #544

Workflow file for this run

name: check & fix styling
on: [ push ]
jobs:
php-cs-fixer:
name: php-cs-fixer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}
- name: Run composer install
run: composer install --prefer-dist --ansi --no-interaction --ansi -v
# - name: Install global php-cs-fixer
# run: composer global require friendsofphp/php-cs-fixer --prefer-dist --ansi --no-interaction --no-scripts
- name: Run php-cs-fixer
run: composer style-fix
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Fix styling
file_pattern: '**.php'