Skip to content

Commit

Permalink
Update github action config file
Browse files Browse the repository at this point in the history
  • Loading branch information
guanguans committed Jun 20, 2023
1 parent ef28dcd commit cb03272
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .github/workflows/php-cs-fixer.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,38 @@
name: check & fix styling

on: [ push, pull_request ]
on: [ push ]

jobs:
php-cs-fixer:
name: php-cs-fixer
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
ref: ${{ github.head_ref }}
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: Run PHP CS Fixer
uses: docker://oskarstark/php-cs-fixer-ga
- name: Cache composer dependencies
uses: actions/cache@v3
with:
args: --config=.php-cs-fixer.php --allow-risky=yes --using-cache=no --diff --dry-run --ansi -v
path: vendor
key: composer-${{ hashFiles('composer.lock') }}

- name: Run composer install
run: composer install --no-interaction --prefer-dist --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@v4
with:
commit_message: Fix styling
file_pattern: '**.php'
39 changes: 39 additions & 0 deletions .github/workflows/rector.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: rector

on:
push:
paths:
- '**.php'
- '.github/**.yml'
- '.github/**.yaml'
- '*.xml'
- '*.xml.dist'

jobs:
rector:
name: rector
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- 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@v3
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}

- name: Run composer install
run: composer install --no-interaction --prefer-dist --ansi -v

- name: Install global rector
run: composer global require rector/rector --prefer-dist --ansi --no-interaction --no-scripts

- name: Run rector
run: composer rector-dry-run

0 comments on commit cb03272

Please sign in to comment.