Skip to content

Commit abc725f

Browse files
cclaussgithub-actions
and
github-actions
authored
mypy --install-types --non-interactive . (TheAlgorithms#4530)
* mypy --install-types --non-interactive . @dhruvmanila Is this useful/needed given that we do not pin our dependencies? https://mypy-lang.blogspot.com/2021/06/mypy-0910-released.html * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent a7b9e28 commit abc725f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip setuptools six wheel
2323
python -m pip install mypy pytest-cov -r requirements.txt
24-
- run: mypy .
24+
- run: mypy --install-types --non-interactive .
2525
- name: Run tests
2626
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
2727
- if: ${{ success() }}

0 commit comments

Comments
 (0)