Skip to content

Commit e5021b2

Browse files
committed
add github action to ensure that ECP-ST-CAR always builds
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.
1 parent e1eee32 commit e5021b2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
2+
name: build document
3+
on: [push, pull_request]
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- uses: xu-cheng/texlive-action/full@v1
10+
with:
11+
run: |
12+
apk add make
13+
make

0 commit comments

Comments
 (0)