diff --git a/.github/workflows/auto-lint.yml b/.github/workflows/auto-lint.yml new file mode 100644 index 0000000..c63079d --- /dev/null +++ b/.github/workflows/auto-lint.yml @@ -0,0 +1,14 @@ +name: Code Linting +on: + pull_request: + branches: + - 1.x + +jobs: + Lint: + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v2 + - name: Run CodeSniffer + uses: discoverygarden/CodeSniffer@v1