corrlib/.github/workflows/pytest.yaml
Workflow config file is invalid. Please check your config file: yaml: line 19: mapping values are not allowed in this context

24 lines
530 B
YAML

name: Pytest
jobs:
test:
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
# For example, using `pytest`
run: uv run pytest tests