Skip to content

Commit

Permalink
add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pdowler committed Aug 11, 2020
1 parent 12d2c81 commit b979a27
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI build of the standard

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Setup dependencies
run: |
sudo apt update
sudo apt install texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended xsltproc ghostscript cm-super librsvg2-bin inkscape
- name: Build the document
run: make role_diagram.pdf biblio forcetex

- name: Check the output
run: |
test -f TAP.pdf
test -f TAP.bbl
- uses: actions/upload-artifact@v1
with:
name: TAP.pdf Preview
path: TAP.pdf

0 comments on commit b979a27

Please sign in to comment.