We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2db8e1c + a5b3b8c commit eab21e8Copy full SHA for eab21e8
.github/workflows/main.yml
@@ -28,3 +28,20 @@ jobs:
28
check_filenames: true
29
check_hidden: true
30
skip: '*.pdf'
31
+
32
+ compile:
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ - name: install tex stuff
37
+ run: |
38
+ ls
39
+ pwd
40
+ sudo apt-get -y update
41
+ sudo apt-get --no-install-recommends -y install latexmk
42
+ - name: compile tex
43
44
+ pdflatex -halt-on-error -interaction=nonstopmode notes.tex
45
46
47
+ echo "Built successfully"
0 commit comments