forked from mirrors/Awesome-CV
17 lines
228 B
YAML
17 lines
228 B
YAML
|
name: Compile PDFs
|
||
|
|
||
|
on:
|
||
|
push: {}
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
container: thomasweise/texlive
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repo
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Compile
|
||
|
run: make
|