Add documentaion, finalizing experimental

This commit is contained in:
Mukhtar Akere
2025-04-13 11:29:08 +01:00
parent 101ae4197e
commit 7492f629f9
131 changed files with 20666 additions and 488 deletions

32
.github/workflows/deploy-docs.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: Deploy Documentation
on:
push:
branches:
- main
- beta
- experimental
paths:
- 'docs/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material
- name: Deploy docs
run: |
cd docs
mkdocs gh-deploy --force