From bcaa07cdb4d0355087641b0adf42b5034b0264df Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 6 May 2020 01:52:34 +0200 Subject: Add latex manual CI job. --- .github/workflows/latex.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/latex.yml (limited to '.github') diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml new file mode 100644 index 00000000..9947545a --- /dev/null +++ b/.github/workflows/latex.yml @@ -0,0 +1,28 @@ +name: Build manual + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Fix stupidity + run: | + cp AUTHORS AUTHORS. + cp LICENSE LICENSE. + - name: Compile LaTeX + uses: xu-cheng/latex-action@v2 + with: + working_directory: manual + root_file: tracy.tex + - uses: actions/upload-artifact@v2 + with: + name: manual + path: manual/tracy.pdf -- cgit v1.2.3