You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
PHP_CodeSniffer Check with Annotations
v1.1.0
This action will help you to run phpcs (PHP_CodeSniffer) with GitHub Actions platform. It also supports annotations out of the box — you don't need to use any tokens to make it work.
Add the following code to .github/workflows/phpcs.yml
file.
name: PHPCS check
on: pull_request
jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: PHPCS check
uses: chekalsky/phpcs-action@v1
Eventually you could also check for warnings.
...
- name: PHPCS check
uses: chekalsky/phpcs-action@v1
with:
enable_warnings: true
You probably would like to have configuration file for PHP_CodeSniffer in order to make it work as you like.