Skip to content

chore: bump version to 3.1.0 for redundant PLC support release #15

chore: bump version to 3.1.0 for redundant PLC support release

chore: bump version to 3.1.0 for redundant PLC support release #15

Workflow file for this run

name: Documentation
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install dependencies
run: |
uv venv
uv pip install ".[doc,cli]"
- name: Build documentation
run: uv run sphinx-build -N -bhtml doc/ doc/_build -W