Browse Source

Merge pull request #7 from nchiasson-dgi/fix/add-code-linting

Adding auto-lint workflow
pull/8/head
William Panting 3 years ago committed by GitHub
parent
commit
7b606ee29e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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