Skip to content

Docs build

Docs build #79

Workflow file for this run

name: Docs build
run-name: Docs build
on:
pull_request:
paths-ignore:
- README.md
- cmake/**
- src/**
- perf_tests/**
- unit_tests/**
types: [ opened, reopened, synchronize ]
jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
MDBOOK_VERSION: 0.4.36
steps:
- uses: actions/checkout@v4
- name: Install sphinx
run: |
pip install -U -r docs/requirements.txt
- name: Build with sphinx
run: make -C docs html