Skip to content

Commit aeebeea

Browse files
committed
.github: add PyLint linter to CI
Signed-off-by: Emmanuel Blot <[email protected]>
1 parent 6b2c749 commit aeebeea

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/pythonchecksyntax.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
- name: Check style
2929
run: |
3030
python setup.py check_style
31+
- name: Linter
32+
run: |
33+
pylint --disable=fixme --disable=duplicate-code \
34+
pyftdi pyftdi/bin pyftdi/serialext \
35+
pyftdi/tests pyftdi/serialext/tests pyftdi/tests/backend
3136
- name: Install package
3237
run: |
3338
python setup.py install

test-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
ruamel.yaml >= 0.16
21
setuptools
32
wheel
3+
pylint
4+
ruamel.yaml >= 0.16

0 commit comments

Comments
 (0)