mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-29 22:33:58 -06:00
* add tikzcache * ignore files * add latexmkrc file * Move figures to new files * rename images * Fix build commands * Release as epub3 and mobi * Add cover-image support * use older epub * Externalize all tables * change gh actions command * fix linux xargs rm
16 lines
375 B
YAML
16 lines
375 B
YAML
name: Validate LaTeX Document
|
|
on: [ push, pull_request ]
|
|
jobs:
|
|
test_building_book:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up git repository
|
|
uses: actions/checkout@v3
|
|
- name: Test building book
|
|
uses: xu-cheng/texlive-action/full@v1
|
|
with:
|
|
run: |
|
|
apk add make
|
|
cd book
|
|
make build_pdf
|