diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dc1b21f..c58047d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -97,3 +97,16 @@ jobs: name: coverage-html path: htmlcov if: ${{ failure() }} + + mypy: + runs-on: ubuntu-latest + needs: build + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: 3.x + - uses: astral-sh/setup-uv@v2 + - run: uvx mypy src +