mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-12 20:27:53 +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: |
|
||||
cd obs/build
|
||||
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…
Reference in a new issue