Skip to content

chore(main): release 1.2.0 #164

chore(main): release 1.2.0

chore(main): release 1.2.0 #164

Workflow file for this run

name: Documentation
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- 'docs/**'
- 'src/**/*.py'
- 'mkdocs.yml'
- 'pyproject.toml'
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Required for git-revision-date-localized plugin
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- run: uv python install 3.12
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y graphviz libgraphviz-dev pkg-config
- run: uv sync --locked --dev
- name: Build documentation
run: uv run mkdocs build --strict
- run: uv cache prune --ci
if: always()
continue-on-error: true