blob: a05313eb9c5a610092a0cafe5dc2eea84453219f (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
name: Oper Guide
on:
push:
branches:
- main
paths:
- 'doc/oper-guide/**'
- '.github/workflows/docs.yaml'
pull_request:
branches:
- main
paths:
- 'doc/oper-guide/**'
- '.github/workflows/docs.yaml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
python3-sphinx \
texinfo \
# EOF
- uses: actions/checkout@main
with:
persist-credentials: false
submodules: recursive
- name: Build Oper Guide
run: make -C doc/oper-guide html man info
|