Skip to content

Drop python 3.8 specifics #290

Drop python 3.8 specifics

Drop python 3.8 specifics #290

Workflow file for this run

name: Documentation
on:
pull_request:
push:
branches:
- master
- develop
- ci-debug
schedule:
- cron: "0 12 * * 0"
jobs:
docsbuild:
name: Build documentation
runs-on: ubuntu-latest
env:
MPLBACKEND: svg
PYDEVD_DISABLE_FILE_VALIDATION: 1
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: 3.12
- name: Set up Python
run: uv python install
- name: Install python essentials
run: uv pip install -U setuptools setuptools_scm wheel
- name: Install pandoc
run: sudo apt-get install pandoc
- name: Install dependencies
run: |
uv pip install ".[all,docs]"
uv pip install "./tools/odbclient"
- name: Build docs
run: sphinx-build -b html docs _build/html