Skip to content
This repository has been archived by the owner on Mar 18, 2019. It is now read-only.

rtCamp/action-phpcs-inspection

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

PHPCS Inspections - GitHub Action

A GitHub Action that can be used to run PHPCS inspections on the diff of patch being commited.

Installation

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).

  1. Create a .github/main.workflow in your GitHub repo.
  2. Add the following code to the main.workflow file and commit it to the repo's master branch.
workflow "PHPCS Inspections" {
  resolves = ["Run phpcs inspection"]
  on = "push"
}

action "Run phpcs inspection" {
  uses = "rtCamp/rtCamp/action-phpcs-inspection@master"
  env = {
    DIFF_BASE="master"
  }
}

Environment Variables

# 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=0fbe5466e1ec4eecb4bf0c7453ee4fa045ef3ebf

License

MIT © 2019 rtCamp