We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 212c466 commit 27c33bfCopy full SHA for 27c33bf
.github/workflows/build.yml
@@ -0,0 +1,22 @@
1
+name: Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ ubuntu-build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Setup environment
11
+ run: |
12
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
13
+ sudo apt-get update
14
+ sudo apt-get install ninja-build
15
+ sudo apt-get install texlive*
16
+ - name: Build
17
18
+ pdflatex *.tex
19
+ - uses: actions/upload-artifact@v4
20
+ with:
21
+ name: pdf-linux
22
+ path: '*.pdf'
0 commit comments