test/first #8

Merged
jkuhl merged 24 commits from test/first into develop 2025-12-01 18:07:00 +01:00
Showing only changes of commit ca071a2e75 - Show all commits

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

Justus Kuhlmann 2025-12-01 17:59:56 +01:00
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 --all-extras --dev --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest tests