Merge pull request #48 from PHOL-LABS/codex/update-enum-typesettings-… #44
This file contains hidden or 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: CI (German) | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build German PDF and upload as an artifact | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Git repository | |
| uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| - name: Compile LaTeX document | |
| uses: xu-cheng/latex-action@v3 | |
| with: | |
| root_file: DR_DRNext_User_Manual_mk1_mk2_de.tex | |
| texlive_version: latest | |
| extra_system_packages: coreutils icu inkscape | |
| - name: Upload the artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: DR_DRNext_User_Manual_mk1_mk2_de | |
| path: | | |
| README.md | |
| DR_DRNext_User_Manual_mk1_mk2_de.pdf | |
| verify: | |
| name: Verify German PDF/A | |
| runs-on: ubuntu-latest | |
| needs: build | |
| container: { image: ghcr.io/jdujava/cuni-thesis-validator } | |
| steps: | |
| - name: Get the PDF file from the artifact | |
| uses: actions/download-artifact@v4 | |
| - name: Verify the PDF file with VeraPDF | |
| run: verify DR_DRNext_User_Manual_mk1_mk2_de/*.pdf | tee /dev/stderr | grep -qE 'nonCompliant="0" failedJobs="0"' |