aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/latex.yml
blob: 7af6e8037b29e7fed72d9674b9f91fd63539eb5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: LaTeX
on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - name: Setup TeXLive
      uses: DanySK/setup-texlive-action@0.1.1
      with:
        requirements-file: .github/texlive/packages.tex
    - name: Checkout Repo
      uses: actions/checkout@v2
    - name: Typeset Project Plan
      run: make -C doc/projectplan
    - name: Typeset Thesis
      run: make -C doc/thesis