From 29704aba57290d6fe452af73d5281d93f54bb837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Cser=C3=A9p?= Date: Thu, 27 Feb 2020 17:15:34 +0100 Subject: [PATCH] Use GitHub Actions as CI to test whether the LaTeX source builds. --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..451e5c9 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,12 @@ +name: Build LaTeX document +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@master + with: + root_file: thesis.tex