Skip to content

Update to v0.5.6

Update to v0.5.6 #53

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.10'
- name: Install Dependencies
run: |
pip install '.[doc]'
sudo apt-get update && sudo apt-get install --yes doxygen
- name: Deploy doc
run: mkdocs gh-deploy --force