We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c119b32 commit d9f2b27Copy full SHA for d9f2b27
.github/workflows/test.yml
@@ -0,0 +1,17 @@
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
+ - name: checkout
9
+ uses: actions/checkout@v2
10
+ - name: install prerequisites
11
+ run: sudo apt-get install make
12
+ - name: Compile LaTeX document
13
+ uses: xu-cheng/latex-action@v2
14
+ with:
15
+ root_file: ECP-ST-CAR.tex
16
+ compiler: make
17
+ args:
0 commit comments