Skip to content

Initial Import

Initial Import #1

Workflow file for this run

name: Deploy preview to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install theme + dev deps
run: pip install -e ".[dev]"
- name: Strict build (lint check)
run: mkdocs build --strict
- name: Deploy to gh-pages
run: mkdocs gh-deploy --force --no-history