Skip to content

Commit

Permalink
Create pylint.yml
Browse files Browse the repository at this point in the history
add pylint action
  • Loading branch information
jgstew authored Mar 10, 2020
1 parent 6b0970c commit d6bf5b0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: pylint

on:
push:
paths:
- "**.py"

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: GitHub Action for pylint
uses: cclauss/GitHub-Action-for-pylint@0.7.0
with:
args: "pylint **.py"

0 comments on commit d6bf5b0

Please sign in to comment.