Skip to content

Commit

Permalink
CI: Add workflow to build the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
markgoddard committed Jul 8, 2022
1 parent c69002e commit d713993
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Build OpenStack admin guide
on:
- pull_request
jobs:
build:
name: Build OpenStack admin guide
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install Python dependencies
run: pip3 install -r requirements.txt

- name: Build HTML
run: make html

0 comments on commit d713993

Please sign in to comment.