Skip to content

Commit 9939a57

Browse files
committed
Add initial github workflow
1 parent 1547913 commit 9939a57

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
container:
10+
image: blang/latex
11+
12+
steps:
13+
- uses: actions/checkout@v1
14+
- name: Install inkscape and make
15+
run: |
16+
apt update
17+
apt install --yes inkscape make
18+
- name: Build Slides
19+
run: |
20+
make slides
21+
- name: Build Handout
22+
run: |
23+
make handout
24+

0 commit comments

Comments
 (0)