2020-06-04 00:44:27 +01:00
|
|
|
name: Build docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
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:
|
2022-11-10 15:50:38 +00:00
|
|
|
- uses: actions/checkout@v3
|
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
|
|
|
|
run: pip install Sphinx
|
|
|
|
- name: Build docs
|
|
|
|
run: make -C docs/ html
|