corrlib/.github/workflows/pytest.yaml
Workflow config file is invalid. Please check your config file: yaml: line 29: mapping values are not allowed in this context
Justus Kuhlmann f26e61f7af
Some checks are pending
pytest.yaml / add on (push) Waiting to run
add on
2025-12-01 13:52:18 +01:00

33 lines
625 B
YAML

name: Pytest
on:
push:
branches:
- master
- develop
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: actions/checkout@v4
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