Skip to content

Commit de287ab

Browse files
authored
build terminology in CI (#44)
1 parent 7696e8a commit de287ab

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/CI.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build Terminology PDF
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
tags: '*'
8+
workflow_dispatch:
9+
jobs:
10+
build_latex:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Set up Git repository
14+
uses: actions/checkout@v2
15+
- name: Compile LaTeX document
16+
uses: xu-cheng/texlive-action/full@v1
17+
with:
18+
run: |
19+
cd doc/terminology
20+
latexmk -pdf -shell-escape terminology.tex
21+
- name: Upload Artifact
22+
uses: actions/upload-artifact@v2
23+
with:
24+
name: PDF
25+
path: doc/terminology/terminology.pdf

0 commit comments

Comments
 (0)