Some checks failed
Build LaTeX Document / build_latex (pull_request) Failing after 21s
27 lines
637 B
YAML
27 lines
637 B
YAML
name: Build LaTeX Document
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build_latex:
|
|
runs-on: ubuntu-latest
|
|
container: ubuntu:latest
|
|
steps:
|
|
- name: Set up Git repository
|
|
uses: actions/checkout@v4.2.2
|
|
|
|
- name: Install LaTeX
|
|
run: sudo apt update && sudo apt install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
|
|
|
|
- name: Build LaTeX document
|
|
run: pdflatex -interaction=nonstopmode -halt-on-error Tesi.tex
|
|
|
|
- name: Upload PDF artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
path: Test.pdf
|