Skip to content

Commit d713993

Browse files
committed
CI: Add workflow to build the docs
1 parent c69002e commit d713993

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Build OpenStack admin guide
3+
on:
4+
- pull_request
5+
jobs:
6+
build:
7+
name: Build OpenStack admin guide
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- uses: actions/setup-python@v4
13+
with:
14+
python-version: '3.x'
15+
16+
- name: Install Python dependencies
17+
run: pip3 install -r requirements.txt
18+
19+
- name: Build HTML
20+
run: make html

0 commit comments

Comments
 (0)