Browse Source

Adding auto-lint workflow

pull/7/head
Noel Chiasson 3 years ago
parent
commit
55c41ebe36
  1. 14
      .github/workflows/auto-lint.yml

14
.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
Loading…
Cancel
Save