We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d28985 commit 9419bf8Copy full SHA for 9419bf8
.github/workflows/python-package.yml
@@ -14,7 +14,7 @@ jobs:
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
17
- python-version: [3.8, 3.9]
+ python-version: [3.8, 3.9, 3.10]
18
19
steps:
20
- uses: actions/checkout@v2
@@ -32,6 +32,9 @@ jobs:
32
- name: Lint with pep8
33
run: |
34
pycodestyle --max-line-length=140 --ignore=E501 --first --statistics postgresql_kernel
35
+ - name: Perpare for static check
36
+ run: |
37
+ mypy --install-types
38
- name: Static check with mypy
39
40
mypy --ignore-missing-imports --show-column-numbers --follow-imports=silent --check-untyped-defs --disallow-untyped-defs --no-implicit-optional --warn-unused-ignores --scripts-are-modules postgresql_kernel
0 commit comments