Skip to content

Commit 3d946fd

Browse files
dgarcia360patrickelectric
authored andcommitted
feat: add docs verify workflow
1 parent a356992 commit 3d946fd

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/docs-verify.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: "Test documentation"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
paths:
8+
- "docs/**"
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
persist-credentials: false
18+
fetch-depth: 0
19+
- name: Set up Python
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: '3.12'
23+
24+
- name: Install dependencies
25+
run: make -C docs setupenv
26+
27+
- name: Install Doxygen (optional)
28+
run: sudo apt-get update && sudo apt-get install -y doxygen
29+
30+
- name: Build docs
31+
run: make -C docs test
32+

0 commit comments

Comments
 (0)