Skip to content

fix: typo in README.md for ARCHITECTURE link #12

fix: typo in README.md for ARCHITECTURE link

fix: typo in README.md for ARCHITECTURE link #12

Workflow file for this run

# name: Sync Docs Artifact
# on:
# push:
# branches:
# - main
# jobs:
# sync-docs:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Install uv
# uses: astral-sh/setup-uv@v1
# - name: Set up Python
# run: uv python install 3.11
# - name: Install dependencies
# run: |
# uv pip install pdoc
# uv pip install ".[docs]"
# - name: Generate HTML docs
# run: |
# mkdir -p docs
# pdoc voxkit --output-dir docs --search --math --mermaid
# - name: Upload docs artifact
# uses: actions/upload-artifact@v4
# with:
# name: pdoc-html
# path: docs/
# retention-days: 30
# # - name: Send docs to Vercel