Skip to content

Reformat table of contents #14

Reformat table of contents

Reformat table of contents #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv and Python
uses: astral-sh/setup-uv@v3
with:
python-version: "3.11"
- name: Sync dependencies
run: uv sync --locked --dev
- name: Run pre-commit hooks
run: uv run pre-commit run --all-files --show-diff-on-failure
- name: Run pytest
run: uv run pytest
- name: Build
run: uv build