mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-12-06 09:34:25 -06:00
24 lines
504 B
YAML
24 lines
504 B
YAML
name: Validate LaTeX Document
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build_latex:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Git repository
|
|
uses: actions/checkout@v3
|
|
- name: Build book
|
|
uses: xu-cheng/texlive-action/full@v1
|
|
with:
|
|
run: |
|
|
apk add make
|
|
cd book
|
|
make all
|
|
- name: Upload PDF
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: PDF
|
|
path: book/book.pdf
|