Skip to content

Commit 5e4acbe

Browse files
committed
fix(ci): add type stubs for mypy
1 parent d34e5d9 commit 5e4acbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ jobs:
1010
- uses: actions/setup-python@v5
1111
with:
1212
python-version: "3.12"
13-
- run: pip install mypy
13+
- run: pip install mypy types-requests types-PyYAML
1414
- run: mypy src

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ mypy:
1212
stage: lint
1313
image: python:3.12-slim
1414
script:
15-
- pip install mypy
15+
- pip install mypy types-requests types-PyYAML
1616
- mypy src

0 commit comments

Comments
 (0)