Skip to content

feat: add py.typed file for type hinting support (#1) #102

feat: add py.typed file for type hinting support (#1)

feat: add py.typed file for type hinting support (#1) #102

Workflow file for this run

name: Build Docs
on: [push]
jobs:
docs:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, 'wip')"
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group docs
- name: Update docs
run: |
uv pip install mkdocs
uv pip install -r docs/requirements.txt
cd docs
cp ../README.md index.md
cd ..
uv mkdocs gh-deploy --clean --force
if: success()