Skip to content

added type guard

added type guard #45

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --all-extras
- name: Install package itself
run: uv pip install -e .
- name: Build Documentation
run: uv run mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site