mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-03-08 17:50:50 +00:00
[docs] ci: build documentation on GitHub Actions
This commit is contained in:
parent
924bd9e543
commit
94d7ed300e
1 changed files with 17 additions and 0 deletions
17
.github/workflows/build.yml
vendored
17
.github/workflows/build.yml
vendored
|
@ -150,3 +150,20 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd obs/build
|
cd obs/build
|
||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
|
|
||||||
|
docs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: Update apt
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
- name: Install docs dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get install python3-sphinx
|
||||||
|
- name: Build docs
|
||||||
|
run: |
|
||||||
|
cd doc
|
||||||
|
make dirhtml -j$(nproc)
|
||||||
|
|
Loading…
Add table
Reference in a new issue