add python version 3.10 and 3.11 to matrix
Some checks failed
Pytest / pytest (3.10) (push) Failing after 27s
Pytest / pytest (3.11) (push) Failing after 31s
Pytest / pytest (3.12) (push) Successful in 27s
Pytest / pytest (3.13) (push) Successful in 30s
Pytest / pytest (3.14) (push) Successful in 30s

This commit is contained in:
Justus Kuhlmann 2025-12-01 17:57:06 +01:00
commit d63017d2c0
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -12,6 +12,8 @@ jobs:
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
@ -30,6 +32,6 @@ jobs:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install corrlib
run: uv sync --locked --all-extras --dev --python="${{ matrix.python-version }}"
run: uv sync --locked --all-extras --dev --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest tests