We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a356992 commit 3d946fdCopy full SHA for 3d946fd
1 file changed
.github/workflows/docs-verify.yml
@@ -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
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