summaryrefslogtreecommitdiffstats
path: root/.github/workflows/linting.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/linting.yml')
-rw-r--r--.github/workflows/linting.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml
index edf6025d597..2f068019a35 100644
--- a/.github/workflows/linting.yml
+++ b/.github/workflows/linting.yml
@@ -68,8 +68,9 @@ jobs:
- run: |
# Run linters for openbb_platform
if [ -n "${{ env.platform_files }}" ]; then
- # TODO: Add mypy to this part of the linting workflow once we're ready
pylint ${{ env.platform_files }}
+ mypy ${{ env.platform_files }} --ignore-missing-imports --scripts-are-modules --check-untyped-defs
+ pydocstyle ${{ env.platform_files }}
else
echo "No Python files changed in openbb_platform"
fi