We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44e1a14 commit a5b3b8cCopy full SHA for a5b3b8c
1 file changed
.github/workflows/main.yml
@@ -33,13 +33,15 @@ jobs:
33
runs-on: ubuntu-latest
34
steps:
35
- uses: actions/checkout@v4
36
- - name: one-line script
37
- run: echo "Hello, world!"
38
- - name: compile tex
+ - name: install tex stuff
39
run: |
40
ls
41
pwd
42
sudo apt-get -y update
43
- # sudo DEBIAN_FRONTEND=noninteractive apt-get -y install tzdata
44
sudo apt-get --no-install-recommends -y install latexmk
+ - name: compile tex
+ run: |
+ pdflatex -halt-on-error -interaction=nonstopmode notes.tex
45
46
pdflatex -halt-on-error -interaction=nonstopmode notes.tex
47
+ echo "Built successfully"
0 commit comments