Skip to content

Cleaning

Cleaning #23

Workflow file for this run

name: Build docs
on:
pull_request:
branches:
- main
# Allows manual run from the Actions tab
workflow_dispatch:
jobs:
build-docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install packages
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[docs]
- name: Build static files
run: |
mkdocs build