Skip to content

docs(readme): rewrite concise and accurate (plan-driven, backends) #13

docs(readme): rewrite concise and accurate (plan-driven, backends)

docs(readme): rewrite concise and accurate (plan-driven, backends) #13

Workflow file for this run

name: Tests
on:
push:
pull_request:
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: pytest (py${{ matrix.python-version }})
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pytest pyyaml ruff
- name: Lint (ruff)
run: ruff check src/ tests/
- name: Run test suite
run: python -m pytest -q
docs:
name: mkdocs build --strict
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: pip
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
python -m pip install \
mkdocs-material==9.5.* \
pymdown-extensions
- name: Build site
run: mkdocs build --strict