Bump pl-syntax from 7e4643f
to e800835
(#31)
#160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-notes: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Install TeX Live | |
run: sudo apt-get update && sudo apt-get install latexmk texlive-latex-extra texlive-science texlive-fonts-extra | |
- name: Test writeup builds | |
run: latexmk -pdf week*.tex | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: atpl24-notes | |
path: week*.pdf | |
if-no-files-found: error | |
retention-days: 7 |