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 70099a6 commit a0eab78Copy full SHA for a0eab78
.github/workflows/pdfs.yml
@@ -0,0 +1,26 @@
1
+name: Compile
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ paths:
7
+ - *.tex
8
+ - *.m4
9
+ - *.sty
10
+ - Makefile
11
+ - .github/workflows/pdfs.yml
12
+ - img/**
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Update the system
18
+ run: sudo apt-get -qq update
19
+ - name: Install pre-requisites for LaTeX
20
+ sudo apt-get install -y --no-install-recommends texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra dvipng texlive-latex-recommended texlive-pstricks aspell aspell-en
21
+ - name: Run spellcheck
22
+ run: make spellcheck
23
+ - name: Compile first phase
24
+ run: make slides notes
25
+ - name: Compile second phase to get table of contents
26
0 commit comments