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 9be1664 commit 90c90fdCopy full SHA for 90c90fd
.github/workflows/docs.yml
@@ -25,12 +25,8 @@ jobs:
25
python-version: '3.8'
26
- name: Install requirements
27
run: pip install .[docs]
28
- - name: Build html, latex
29
- run: cd docs && make html && make latex
30
- - name: Build pdf
31
- uses: xu-cheng/latex-action@v2
32
- with:
33
- working_directory: ./docs/build/latex
34
- root_file: "*.tex"
35
- glob_root_file: true
+ - name: Install latex
+ run: sudo apt-get update && sudo apt-get install texlive texlive-publishers texlive-science latexmk cm-super
+ - name: Build html, latex, pdf
+ run: cd docs && make html && make latexpdf
36
0 commit comments