Skip to content

Commit 0a5a4cf

Browse files
authored
installing stubs
1 parent 6515848 commit 0a5a4cf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/mypy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install mypy
21-
mypy --install-types $(git ls-files '*.py')
21+
- name: Install stubs
22+
run: |
23+
mypy --install-types --non-interactive $(git ls-files '*.py')
2224
- name: Analysing the code with pylint
2325
run: |
2426
mypy $(git ls-files '*.py')

0 commit comments

Comments
 (0)