pre-release #171
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: format | |
on: | |
push: | |
pull_request: | |
jobs: | |
format: | |
name: Format Code | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
php-version: ['8.0'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: none | |
- name: Setup Dependencies | |
run: | |
composer install -o | |
- name: Run | |
run: | | |
php bin/format | |
php bin/release | |
- name: Commit Updated | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Format code |