File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,19 @@ jobs:
5555 run : |
5656 python -m pip install --upgrade pip
5757 pip install --no-cache-dir .\[all\]
58- - name : Build Sphinx Documentation
58+ - name : Build Sphinx Documentation (HTML)
5959 working-directory : ./docs/source
6060 run : |
6161 mkdir -p _build/doctrees
6262 sphinx-build -T -W --keep-going -b html -d _build/doctrees -D language=en . _build/html
63+ - name : Install LaTeX dependencies
64+ run : |
65+ sudo apt-get update -qq -y
66+ sudo apt-get install -qq -y texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended latexmk
67+ - name : Build Sphinx Documentation (PDF)
68+ working-directory : ./docs
69+ run : |
70+ make latexpdf
6371
6472 requirements-formatting :
6573 name : Check Requirements Formatting
You can’t perform that action at this time.
0 commit comments