name: Mypy Type Check on: push: branches: [ main ] pull_request: branches: [ main ] jobs: mypy: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.10', '3.11', '3.12', '3.13',] steps: - uses: actions/checkout@v6 - name: Install uv uses: astral-sh/setup-uv@v7 - name: Set up Python uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: uv sync --all-extras - name: Run mypy run: uv run mypy . --strict