Skip to content

Dev/doc

Dev/doc #1

Workflow file for this run

name: doc
on:
push:
branches:
- main
jobs:
deploy-doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Dependencies
run: |
pip install '.[doc]'
- name: Deploy doc
run: mkdocs gh-deploy --force