Skip to content

doc improvement

doc improvement #29

Workflow file for this run

name: Build documentation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version-file: pyproject.toml
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material mkdocstrings[python]
- run: mkdocs gh-deploy --force