Skip to content

Commit a5d8f43

Browse files
committed
Add pylint and interrogate to actions
Signed-off-by: Mihai Criveti <[email protected]>
1 parent 9340cbf commit a5d8f43

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/lint.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,13 @@ jobs:
6969
cmd: |
7070
vulture mcpgateway --min-confidence 80
7171
72-
# - id: pylint
73-
# setup: pip install pylint
74-
# cmd: pylint mcpgateway
72+
- id: pylint
73+
setup: pip install pylint
74+
cmd: pylint mcpgateway --errors-only --fail-under=10
75+
76+
- id: interrogate
77+
setup: pip install interrogate
78+
cmd: interrogate -vv mcpgateway --fail-under 100
7579

7680
# - id: mypy
7781
# setup: pip install mypy

0 commit comments

Comments
 (0)