File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : User Docs
2
+
3
+ on :
4
+ push
5
+
6
+ jobs :
7
+ test-build :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+ - name : Set up latest stable Python 3.x
12
+ uses : actions/setup-python@v5
13
+ with :
14
+ python-version : " 3.x"
15
+ - name : Install dependencies
16
+ run : |
17
+ make dependencies
18
+ - name : Ensure the docs build
19
+ run : |
20
+ make test-build
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ dependencies: ./.venv/pyvenv.cfg ./requirements.txt
20
20
./requirements.txt :
21
21
@
22
22
23
+ .PHONY : test-build
24
+ test-build : dependencies
25
+ @$(SPHINXBUILD ) -W " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS )
26
+
23
27
# Catch-all target: route all unknown targets to Sphinx using the new
24
28
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
25
29
.PHONY : Makefile
You can’t perform that action at this time.
0 commit comments