Fix \acronymname in English Version #75
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 with pdflatex | |
on: [push, pull_request] | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v2 | |
- name: Compile main-german.tex | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main-german.tex | |
compiler: pdflatex | |
args: | |
- name: biber main-german | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main-german | |
compiler: biber | |
args: | |
- name: Compile main-minted-german.tex | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main-minted-german.tex | |
compiler: pdflatex | |
args: -shell-escape | |
- name: Compile main-english.tex | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main-english.tex | |
compiler: pdflatex | |
args: | |
- name: Compile main-paderborn-german.tex | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main-paderborn-german.tex | |
compiler: pdflatex | |
args: | |
- name: Compile main-paderborn-english.tex | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main-paderborn-english.tex | |
compiler: pdflatex | |
args: |