Skip to content

Add full docs site and enhance CLI/docstrings #41

Add full docs site and enhance CLI/docstrings

Add full docs site and enhance CLI/docstrings #41

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Sync dependencies (locked)
run: |
uv sync --locked --all-groups
- name: Run linters
run: |
make check-linting
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Sync dependencies (locked)
run: |
uv sync --locked --all-groups
- name: Run tests
run: |
make test
- name: Run doc tests
run: |
make test-docs