diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml new file mode 100644 index 00000000..701f82fb --- /dev/null +++ b/.github/workflows/pylint.yml @@ -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"