Update README.md #907
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: Code Style | |
on: [ push, pull_request ] | |
permissions: write-all | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }} | |
name: Check | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json | |
coverage: none | |
- name: Install dependency | |
run: composer global require dragon-code/codestyler | |
- name: Check the code-style | |
run: codestyle --test | |
fix: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
name: Fix | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json | |
coverage: none | |
- name: Setup Composer | |
run: | | |
composer global config github-oauth.github.com ${{ secrets.COMPOSER_TOKEN }} | |
composer global config --no-plugins allow-plugins.dragon-code/codestyler true | |
composer global config --no-plugins allow-plugins.ergebnis/composer-normalize true | |
composer global config --no-plugins allow-plugins.symfony/thanks true | |
composer config --no-plugins allow-plugins.dragon-code/codestyler true | |
composer config --no-plugins allow-plugins.ergebnis/composer-normalize true | |
composer config --no-plugins allow-plugins.symfony/thanks true | |
- name: Install dependencies | |
run: | | |
composer global require dragon-code/codestyler | |
composer global require ergebnis/composer-normalize | |
composer global require symfony/thanks | |
- name: Fix the code-style | |
run: | | |
codestyle dependabot | |
codestyle | |
composer normalize | |
composer thanks | |
- name: Create a Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: code-style | |
branch-suffix: random | |
delete-branch: true | |
title: "🦋 The code style has been fixed" | |
commit-message: 🦋 The code style has been fixed | |
body: The code style has been fixed | |
labels: code-style |