We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f68644 commit 9d5a905Copy full SHA for 9d5a905
1 file changed
.github/workflows/ci.yml
@@ -17,13 +17,13 @@ jobs:
17
run: curl -sSL https://install.python-poetry.org | python3 -
18
- name: Install dependencies
19
run: |
20
- poetry install && mypy --install-types
+ poetry install
21
- name: Run linter :pylint
22
23
poetry run pylint tiny_web_crawler
24
- name: Run mypy :type_checking
25
26
- poetry run mypy tiny_web_crawler
+ poetry run mypy --install-types --non-interactive tiny_web_crawler
27
28
test:
29
needs: lint
0 commit comments