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 26, 2021
1 parent e1eee32 commit e5021b2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 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:
- uses: actions/checkout@v2
- uses: xu-cheng/texlive-action/full@v1
with:
run: |
apk add make
make

0 comments on commit e5021b2

Please sign in to comment.