Merge pull request #359 from pscheit/remove-tag-from-nodes #257
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: Coding Standards | |
on: [push, pull_request] | |
jobs: | |
tests: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: 8.2 | |
tools: php-cs-fixer | |
- name: Run PHP-CS-Fixer | |
run: php-cs-fixer fix --ansi --verbose --diff --dry-run |