File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1- name : Compile
1+ name : Compile sanity check
22on :
33 push :
44 branches :
88 - ' **.m4'
99 - ' **.sty'
1010 - Makefile
11- - .github/workflows/pdfs .yml
11+ - .github/workflows/compile .yml
1212 - ' img/**'
1313jobs :
1414 build :
1717 - name : Update the system
1818 run : sudo apt-get -qq update
1919 - name : Install pre-requisites for LaTeX
20- run : 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
20+ run : ./dev/install-latex.sh
21+ - name : Install pre-requisites for spell check
22+ run : ./dev/install-spellcheck.sh
2123 - name : Checkout master branch
2224 uses : actions/checkout@v2
2325 with :
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ sudo apt-get install -y --no-install-recommends \
4+ texlive-fonts-recommended \
5+ texlive-latex-extra \
6+ texlive-fonts-extra \
7+ dvipng \
8+ texlive-latex-recommended \
9+ texlive-pstricks
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ sudo apt-get install -y --no-install-recommends \
4+ aspell \
5+ aspell-en
You can’t perform that action at this time.
0 commit comments