From cb13658976c6898caec57c4b3155442e5a427a72 Mon Sep 17 00:00:00 2001 From: Michael Hohenstein Date: Mon, 5 Feb 2024 16:57:55 +0100 Subject: [PATCH] github action test --- .github/workflows/build_docs.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build_docs.yml diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml new file mode 100644 index 0000000..2cd77bf --- /dev/null +++ b/.github/workflows/build_docs.yml @@ -0,0 +1,23 @@ +name: build documentation + +on: [push, pull_request] + +jobs: + docs: + runs-on: ubuntu-latest + steps: + - name: Set up Git repository + - uses: actions/checkout@v3 + + - name: compile LaTeX document + - uses: xu-cheng/latex-action@v3 + with: + working_directory: documentation + root_file: main.tex + texlive_version: 2023 + + - name: export pdf file + - uses: actions/upload-artifact@v3 + with: + name: PDF + path: main.pdf