Adds pylint workflow

This commit is contained in:
Mouse Reeve 2021-06-18 11:36:45 -07:00
parent 816feb1cc9
commit 5db506523d

22
.github/workflows/pylint.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
find . -name '*.py' -exec pylint {} \;