bachelor-thesis/.github/workflows/main.yml
Workflow config file is invalid. Please check your config file: yaml: line 16: did not find expected '-' indicator
oleg.petruny 6873d217f6
Some checks failed
CI / Build thesis PDFs and push them to pages (push) Failing after 3s
Update .github/workflows/main.yml
fix for gitea
2025-02-11 21:30:38 +00:00

49 lines
1.0 KiB
YAML

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
prereq:
name: Install prerequisities
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
build:
name: Build thesis PDFs
runs-on: ubuntu-latest
container: { image: 'aergus/latex' }
steps:
- uses: actions/checkout@v3
- name: Build the thesis
run: latexmk thesis && latexmk abstract-cz && latexmk abstract-en
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Thesis
path: |
*.pdf
verify:
name: Verify PDF/A
runs-on: ubuntu-latest
needs: build
container: { image: 'ghcr.io/mff-cuni-cz/cuni-thesis-validator' }
steps:
- name: Get PDFs
uses: actions/download-artifact@v3
- name: Run VeraPDF
run: verify Thesis/*.pdf | tee /dev/stderr | grep -qE 'nonCompliant="0" failedJobs="0"'