Mark 0.0.5 version in Normalizator.php #71
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: Run php-cs-fixer check | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'docs/**' | |
- CHANGELOG.md | |
- LICENSE | |
- README.md | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'docs/**' | |
- CHANGELOG.md | |
- LICENSE | |
- README.md | |
jobs: | |
check: | |
name: PHP CS Fixer Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP with Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
tools: composer, php-cs-fixer | |
- name: Install dependencies | |
run: composer install | |
- name: Run php-cs-fixer | |
run: php-cs-fixer check -v |