Skip to content

Commit 6c0ad0c

Browse files
committed
Install fonts needed for LaTeX step
1 parent 94eb280 commit 6c0ad0c

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/gh-pages.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,21 @@ jobs:
5151

5252
- name: Install dependencies
5353
run: |
54-
pip install -q -r docs/requirements.txt
54+
pip install -r docs/requirements.txt
5555
5656
- name: Check docs for broken links
5757
run: |
5858
cd docs
5959
make linkcheck
6060
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+
6169
- name: Generate LaTeX code to check for errors
6270
run: |
6371
cd docs

0 commit comments

Comments
 (0)