diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index 36a4807..1bfb865 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -25,6 +25,7 @@ jobs: - isort - black - docs + - type-checking # - flake8 steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 81bd276..79481ac 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ envlist = black flake8 docs + type-checking skip_missing_interpreters = true [gh-actions] @@ -54,6 +55,11 @@ extras = tests skipsdist = True commands = flake8 zgw_consumers tests testapp +[testenv:type-checking] +deps = -r{toxinidir}/type-checking.txt +skipsdist = True +commands = pyright --project pyright.pyproject.toml + [testenv:docs] basepython=python changedir=docs