Skip to content

Update the documentation #3

Update the documentation

Update the documentation #3

Workflow file for this run

name: Deploy the documentation
on:
push:
branches:
- main
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Fetch sources
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: pip
python-version: 3.12
- name: Install dependencies
run: pip install --requirement=etc/requirements.txt
- name: Deploy documentation
run: mkdocs gh-deploy --config-file=etc/mkdocs.yaml --force