Skip to content

Commit 7e733eb

Browse files
committed
ci: add mypy type checking step to pull request workflow
Installs mypy and runs static type checks on the src directory during PR builds. Ensures type consistency is validated in CI.
1 parent 5a754b7 commit 7e733eb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build-pull-request.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,8 @@ jobs:
3232
run: |
3333
python -m pip install --upgrade pip
3434
pip install .
35+
pip install mypy
36+
37+
- name: Type check with mypy
38+
run: |
39+
mypy src

0 commit comments

Comments
 (0)