diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 90b3666..18a1f3d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,8 +10,15 @@ jobs: mypy: needs: ruff runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} - uses: actions/checkout@v3 + - run: apt install libsystemd-dev - run: pip install -r requirements.txt - run: pip install mypy - run: mypy --install-types --non-interactive --explicit-package-bases --disable-error-code import-untyped .