Skip to content

Commit ee30e5f

Browse files
committed
Add CI build and artifacts push
1 parent 212c466 commit ee30e5f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: .github/workflows/build.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
macos-build:
7+
runs-on: macos-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Setup environment
11+
run: |
12+
brew install Pygments
13+
brew install --cask mactex
14+
- name: Build
15+
run: |
16+
pdflatex *.tex
17+
- uses: actions/upload-artifact@v4
18+
with:
19+
name: pdf
20+
path: '*.pdf'

0 commit comments

Comments
 (0)