We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fea0b59 commit 0b0fcdaCopy full SHA for 0b0fcda
.github/workflows/compile.yml
@@ -11,10 +11,11 @@ env:
11
12
jobs:
13
build:
14
- # TODO: Run on Docker image that has latex pre-installed?
15
- runs-on: [ubuntu-18.04]
+ runs-on: [ubuntu-20.04]
16
steps:
17
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v3
+ - name: Basic checks
18
+ run: pip install pre-commit && pre-commit run --all-files --show-diff-on-failure --color=always
19
- name: Install latex
20
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends make texlive-plain-generic texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-science texlive-fonts-recommended texlive-fonts-extra texlive-bibtex-extra texlive-extra-utils biber latexmk
21
- name: Build document
0 commit comments