Skip to content

Commit 1d949d2

Browse files
authored
Create latex.yml
1 parent cd75fd7 commit 1d949d2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/latex.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)