We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94eb280 commit 6c0ad0cCopy full SHA for 6c0ad0c
1 file changed
.github/workflows/gh-pages.yml
@@ -51,13 +51,21 @@ jobs:
51
52
- name: Install dependencies
53
run: |
54
- pip install -q -r docs/requirements.txt
+ pip install -r docs/requirements.txt
55
56
- name: Check docs for broken links
57
58
cd docs
59
make linkcheck
60
61
+ - name: Install ghostscript, its fonts and latexmk
62
+ run: |
63
+ sudo apt-get update -y
64
+ sudo apt-get install -y ghostscript \
65
+ fonts-freefont-otf \
66
+ gsfonts
67
+ latexmk
68
+
69
- name: Generate LaTeX code to check for errors
70
71
0 commit comments