-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (23 loc) · 925 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This is a basic workflow to help you get started with Actions
name: Check creation manual and thesis PDFs
# Controls when the workflow will run
on: [push, workflow_dispatch]
jobs:
linux:
name: Linux build on node ${{ matrix.node_version }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./doc
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install pdflatex
run: sudo apt-get install texlive-latex-base
- name: Install extra fonts
run: sudo apt-get install texlive-fonts-extra
- name: Create colorful version of the PDF of the manual
run: ./literate.sh manual colorful
- name: Create colorful version of the PDF of the thesis
run: ./literate.sh thesis colorful