Skip to content

fix some typing

fix some typing #103

Workflow file for this run

name: docs
on:
push:
branches:
- main
workflow_dispatch:
env:
PYTHON_VERSION: "3.12"
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Build pages
working-directory: docs
run: |
uv run make html
- name: Deploy pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html