Changes taking into accounts some of the RFC comments/suggestions #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 add-apt-repository ppa:inkscape.dev/stable | |
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: | | |
inkscape --version | |
make role_diagram.pdf biblio forcetex | |
- name: Check the output | |
run: | | |
test -f DataLink.pdf | |
test -f DataLink.bbl | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: DataLink.pdf Preview | |
path: DataLink.pdf |