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 966bc3e commit 50a55d7Copy full SHA for 50a55d7
.github/workflows/ci.yml
@@ -45,8 +45,8 @@ jobs:
45
if: ${{ matrix.install_libcxx }}
46
run: |
47
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y libc++-dev libc++abi-dev
48
- - name: Install flake8 & mypy
49
- run: python -m pip install flake8 mypy
+ - name: Install flake8
+ run: python -m pip install flake8
50
- name: Fetch fixtures
51
run: ./script/fetch-fixtures
52
- name: Lint
@@ -55,7 +55,11 @@ jobs:
55
shell: bash
56
57
CFLAGS="-O0 -g" python setup.py test
58
- - name: Type Check
+ - name: Install mypy
59
+ if: ${{ !startsWith(matrix.python, "pypy") }}
60
+ run: python -m pip install mypy
61
+ - name: Check types
62
63
64
65
mypy --config-file mypy.ini tests/test_tree_sitter.py
0 commit comments