This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
This library is deprecated in favor of https://github.com/mll-lab/php… #127
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
name: "Autoformat" | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
composer-normalize: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
extensions: mbstring | |
php-version: 8.1 | |
- run: composer install --no-interaction --no-progress --no-suggest | |
- run: composer normalize | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Normalize composer.json | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: creyD/[email protected] | |
with: | |
prettier_options: --write --tab-width=2 *.md | |
branch: ${{ github.head_ref }} | |
commit_message: Prettify | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
php-cs-fixer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
extensions: mbstring | |
php-version: 8.1 | |
- run: composer install --no-interaction --no-progress --no-suggest | |
- run: vendor/bin/php-cs-fixer fix | |
- run: git pull | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Apply php-cs-fixer changes | |
rector: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
extensions: mbstring | |
php-version: 8.1 | |
- run: composer install --no-interaction --no-progress --no-suggest | |
- run: vendor/bin/rector process | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Apply rector changes |