We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84da4ef commit 26ef6e8Copy full SHA for 26ef6e8
.github/workflows/tests.yml
@@ -42,7 +42,17 @@ jobs:
42
run: poetry run flake8
43
44
- name: Lint with mypy
45
- run: poetry run mypy .
+ uses: tsuyoshicho/action-mypy@v3
46
+ with:
47
+ github_token: ${{ secrets.github_token }}
48
+ # Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
49
+ reporter: github-pr-review
50
+ # Change reporter level if you need.
51
+ # GitHub Status Check won't become failure with warning.
52
+ # level: warning
53
+ # Change the current directory to run mypy command.
54
+ # mypy command reads setup.cfg or other settings file in this path.
55
+ # workdir: .
56
57
- name: Print python versions
58
run: |
0 commit comments