We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a835b07 commit 7841eedCopy full SHA for 7841eed
.github/workflows/ci-sphinx-doc.yml
@@ -0,0 +1,35 @@
1
+# SPDX-License-Identifier: GPL-2.0-or-later
2
+# Copyright (c) 2024 Petr Vorel <[email protected]>
3
+
4
+name: "Test building sphinx doc"
5
6
+on: [push, pull_request]
7
8
+permissions: {}
9
10
+jobs:
11
+ sphinx:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout LTP
15
+ uses: actions/checkout@v2
16
+ with:
17
+ path: ltp
18
19
+ - name: Install sphinx
20
+ run: |
21
+ sudo apt update
22
+ sudo apt install python3-sphinx python3-virtualenv
23
24
+ - name: Install sphinx dependencies
25
26
+ cd "$GITHUB_WORKSPACE/ltp/doc/"
27
+ python3 -m virtualenv .venv
28
+ . .venv/bin/activate
29
+ pip install -r requirements.txt
30
31
+ - name: Build doc
32
33
34
35
+ make
0 commit comments