fix: remove obsolote option dashed in biblatex style #41
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
# adpated from https://github.com/nju-lug/NJUThesis/blob/master/.github/workflows/build.yml | |
# This workflow is triggered by push and pull request | |
# Success when compilation is OK. | |
name: Test Compilation | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '*.md' | |
- '.gitignore' | |
- 'docs/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '*.md' | |
- '.gitignore' | |
- 'docs/**' | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v2 | |
- name: Github Action for LaTeX dtx to cls | |
uses: FengChendian/[email protected] | |
with: | |
root_file: hkustthesis.dtx | |
working_directory: ./ | |
- name: Compile sample PDF | |
uses: HermitSun/latex-action@v3 | |
with: | |
root_file: mythesis.tex | |
latexmk_use_xelatex: true | |
args: "-bibtex" | |
- name: Compile documentation PDF | |
uses: HermitSun/latex-action@v3 | |
with: | |
root_file: hkustthesis.dtx | |
latexmk_use_xelatex: true | |
args: "" | |
- name: Upload PDF | |
uses: actions/upload-artifact@v2 | |
with: | |
name: PDF | |
path: | | |
mythesis.pdf | |
hkustthesis.pdf | |