Skip to content

biblatex missing

biblatex missing #5

Workflow file for this run

name: Build LaTeX document
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install LaTeX
run: >-
sudo apt-get update
&& sudo apt-get install -y
texlive
texlive-luatex
texlive-latex-recommended
texlive-latex-extra
texlive-bibtex-extra
fonts-noto-color-emoji
latexmk
- name: Compile LaTeX document
run: |
latexmk -pdf -interaction=nonstopmode -halt-on-error
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: build
path: build/*.pdf