Add pylint to CI pipeline

This commit is contained in:
Milan Stute
2020-12-02 16:18:57 +01:00
parent 91e204f8a2
commit adb658d04d
4 changed files with 13 additions and 2 deletions
+4
View File
@@ -34,6 +34,10 @@ jobs:
run: |
pip install flake8
flake8 . --count --show-source --statistics
- name: Lint with pylint
run: |
pip install pylint
pylint --rcfile=setup.cfg opendrop
- name: Test with pytest
run: |
pip install pytest