Skip to content

Update index.md to mirror README.md #5

Update index.md to mirror README.md

Update index.md to mirror README.md #5

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- "master"
paths:
- ".github/workflows/update-docs.ya?ml"
- "mkdocs.ya?ml"
- "poetry.lock"
- "pyproject.toml"
- "docs/**"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Poetry
run: pip install poetry
- name: Install Dependencies
run: poetry install --no-root --with docs
- name: Deploy website
run: poetry run mkdocs gh-deploy