Skip to content

Build latex definition in CI #1

Build latex definition in CI

Build latex definition in CI #1

Workflow file for this run

# Workflow that validate latex files
name: latex definition files
on:
push:
branches: [ main ]
# Runs on all push to main, to make sure there's no other side effet
pull_request:
branches: [ main ]
# But only runs on PR that touches tex files
paths:
- '**/*.tex'
jobs

Check failure on line 14 in .github/workflows/latex.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/latex.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
latex-compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install latex packages
run: sudo apt install texlive-latex-base
- name: Builds latex files
working-directory: packages/transition-backend/file/definitions
run: pdflatex *.tex