Update CE2 cluster pinout information #60
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 (French) | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build French 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_fr.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_fr | |
| path: | | |
| README.md | |
| DR_DRNext_User_Manual_mk1_mk2_fr.pdf | |
| verify: | |
| name: Verify French 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_fr/*.pdf | tee /dev/stderr | grep -qE 'nonCompliant="0" failedJobs="0"' |