From 4c6756bf74dafbff42559c04830d7a0987751cd3 Mon Sep 17 00:00:00 2001 From: Riccardo Finotello Date: Mon, 31 Aug 2020 09:58:30 +0200 Subject: [PATCH] Add workflow Signed-off-by: Riccardo Finotello --- .github/workflows/pdflatex.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/pdflatex.yml diff --git a/.github/workflows/pdflatex.yml b/.github/workflows/pdflatex.yml new file mode 100644 index 0000000..0d4f6a2 --- /dev/null +++ b/.github/workflows/pdflatex.yml @@ -0,0 +1,12 @@ +name: Compile LaTeX Thesis +on: [push] +jobs: + build_latex: + runs-on: ubuntu-latest + steps: + - name: Set up Git repository + uses: actions/checkout@v2 + - name: Compile LaTeX document + uses: xu-cheng/latex-action@v2 + with: + root_file: thesis.tex