Skip to content

Commit bc4909d

Browse files
authored
Use GitHub Actions as CI to test whether the LaTeX source builds.
1 parent 871d95b commit bc4909d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Build LaTeX document
2+
on: [push]
3+
jobs:
4+
build_latex:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Set up Git repository
8+
uses: actions/checkout@v2
9+
- name: Compile LaTeX document
10+
uses: xu-cheng/latex-action@master
11+
with:
12+
root_file: tdk.tex

0 commit comments

Comments
 (0)