There was an error while loading. Please reload this page.
2 parents 4586970 + b0c1db1 commit 9585d1bCopy full SHA for 9585d1b
1 file changed
.github/workflows/python-check.yml
@@ -31,6 +31,10 @@ on:
31
type: string
32
default: "false"
33
34
+ enable-mypy:
35
+ type: string
36
+ default: "false"
37
+
38
jobs:
39
checks:
40
name: Python Lint & Style & Security
@@ -86,3 +90,9 @@ jobs:
86
90
run: |
87
91
pip install "bandit[toml]"
88
92
bandit -c pyproject.toml -r .
93
94
+ - name: mypy
95
+ if: inputs.enable-mypy == 'true'
96
+ run: |
97
+ pip install mypy
98
+ mypy .
0 commit comments