Create action to check against PSR12 coding standard

This commit is contained in:
Florian Pesth 2023-11-14 20:46:24 +01:00 committed by GitHub
parent 58d6aead69
commit d4c1d17860
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

27
.github/workflows/phpcs_psr12.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: "CI"
on:
pull_request:
paths:
- "html"
jobs:
phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # important!
# we may use whatever way to install phpcs, just specify the path on the next step
# however, curl seems to be the fastest
- name: Install PHP_CodeSniffer
run: |
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
php phpcs.phar --version
- uses: tinovyatkin/action-php-codesniffer@v1
with:
files: "**.php" # you may customize glob as needed
phpcs_path: php phpcs.phar
standard: PSR12