Skip to content

Commit

Permalink
add github action to ensure that ECP-ST-CAR always builds
Browse files Browse the repository at this point in the history
This adds a [github action](https://help.github.com/en/articles/workflow-syntax-for-github-actions)
that builds the document on every pull request. The goal is to ensure that it builds before merging.
  • Loading branch information
tgamblin committed Oct 15, 2020
1 parent c119b32 commit d9f2b27
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: build document
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: install prerequisites
run: sudo apt-get install make
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v2
with:
root_file: ECP-ST-CAR.tex
compiler: make
args:

0 comments on commit d9f2b27

Please sign in to comment.