2020-06-04 00:44:27 +01:00
|
|
|
name: Build docs
|
|
|
|
|
|
|
|
on:
|
2023-10-06 05:57:15 +01:00
|
|
|
push:
|
2020-06-04 00:44:27 +01:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- docs/**
|
|
|
|
|
2022-12-13 18:57:34 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-06-04 00:44:27 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-04 20:42:14 +01:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-11 02:27:28 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2020-06-04 00:44:27 +01:00
|
|
|
- name: Install Python packages
|
2023-09-22 19:00:36 +01:00
|
|
|
run: pip install -r docs/requirements.txt
|
2020-06-04 00:44:27 +01:00
|
|
|
- name: Build docs
|
|
|
|
run: make -C docs/ html
|