corrlib/.github/workflows/pytest.yaml
Justus Kuhlmann 014f16ee6c
Some checks failed
Pytest / pytest (3.10) (push) Failing after 8s
Pytest / pytest (3.11) (push) Failing after 6s
Pytest / pytest (3.12) (push) Failing after 7s
use RouxAntoine checkout
2025-12-01 17:10:56 +01:00

30 lines
605 B
YAML

name: Pytest
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 4 1 * *'
jobs:
pytest:
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: https://github.com/RouxAntoine/checkout@v4.1.8
with:
show-progress: true
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install corrlib
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests