File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 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
2020./requirements.txt :
2121 @
2222
23+ .PHONY : test-build
24+ test-build : dependencies
25+ @$(SPHINXBUILD ) -W " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS )
26+
2327# Catch-all target: route all unknown targets to Sphinx using the new
2428# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
2529.PHONY : Makefile
You can’t perform that action at this time.
0 commit comments