Stub in new TILE
statement
#64
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: Makefile CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install LaTeX | |
run: sudo apt-get install -y texlive-xetex texlive-bibtex-extra biber | |
- name: Compile User Guide PDF | |
run: make | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: X16UsersGuide.pdf | |
path: x16_user_guide.pdf | |
- name: Compile Getting Started Guide PDF | |
run: make getting_started | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: X16GettingStarted.pdf | |
path: x16_getting_started.pdf |