A GitHub Action that can be used to run PHPCS inspections on the diff of patch being commited.
To use this GitHub Action, you must have access to GitHub Actions. GitHub Actions are currently only available in public beta (you must apply for access).
- Create a
.github/main.workflowin your GitHub repo. - Add the following code to the
main.workflowfile and commit it to the repo'smasterbranch.
workflow "PHPCS Inspections" {
resolves = ["Run phpcs inspection"]
on = "push"
}
action "Run phpcs inspection" {
uses = "rtCamp/rtCamp/action-phpcs-inspection@master"
env = {
DIFF_BASE="master"
}
}
# To compare the committed changes between master and the current branch. Default: origin/master.
DIFF_BASE=master
# Head commit from which diff will be taken. Default: `git rev-parse HEAD`
DIFF_HEAD=0fbe5466e1ec4eecb4bf0c7453ee4fa045ef3ebfMIT © 2019 rtCamp