We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd75fd7 commit 1d949d2Copy full SHA for 1d949d2
.github/workflows/latex.yml
@@ -0,0 +1,21 @@
1
+name: LaTeX
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v5
13
+ - name: Install TeX Live
14
+ # Instructions from https://tug.org/texlive/quickinstall.html
15
+ run: |
16
+ cd /tmp
17
+ wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz
18
+ zcat < install-tl-unx.tar.gz | tar xf -
19
+ cd install-tl-2*
20
+ sudo perl ./install-tl --no-interaction
21
+ tree
0 commit comments