From 2b1a0cf9448638a32ed5f0bfefec5cdb324bea30 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Tue, 21 Sep 2021 21:00:20 +0200 Subject: Create test LaTeX workflow --- .github/workflows/latex.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/latex.yml (limited to '.github/workflows/latex.yml') diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml new file mode 100644 index 0000000..7ee16d4 --- /dev/null +++ b/.github/workflows/latex.yml @@ -0,0 +1,16 @@ +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 -- cgit v1.2.1 From c194faf2bab13f0c9c813d6fa726618fe86af25e Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Tue, 21 Sep 2021 21:05:00 +0200 Subject: Add project plan and thesis to workflow --- .github/workflows/latex.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.github/workflows/latex.yml') diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml index 7ee16d4..7af6e80 100644 --- a/.github/workflows/latex.yml +++ b/.github/workflows/latex.yml @@ -14,3 +14,9 @@ jobs: 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 -- cgit v1.2.1