2020-06-03 19:44:27 -04:00
|
|
|
name: Build docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- docs/**
|
|
|
|
|
2022-12-13 13:57:34 -05:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-06-03 19:44:27 -04:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-11-10 10:50:38 -05:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-10 21:27:28 -05:00
|
|
|
- uses: actions/setup-python@v4
|
2020-06-03 19:44:27 -04:00
|
|
|
- name: Install Python packages
|
|
|
|
run: pip install Sphinx
|
|
|
|
- name: Build docs
|
|
|
|
run: make -C docs/ html
|