Skip to content

Commit

Permalink
mypy --install-types
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Jul 20, 2021
1 parent fdf7e9c commit 07b4458
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- 11211:11211
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
Expand All @@ -64,7 +64,7 @@ jobs:
- name: mypy
run: |
# run mypy, tee output to file
poetry run mypy --show-column-numbers --hide-error-context wechatpy | tee /tmp/mypy.out
poetry run mypy --non-interactive --install-types --show-column-numbers --hide-error-context wechatpy | tee /tmp/mypy.out
exit_code="${PIPESTATUS[0]}"
# analyze output
poetry run python .github/workflows/github.py /tmp/mypy.out
Expand Down

0 comments on commit 07b4458

Please sign in to comment.