This commit is contained in:
parent
48b72595a8
commit
2fa2a91e66
2 changed files with 21 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
name: build-latex
|
name: build-latex
|
||||||
on: [ push, pull_request ]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
16
.github/workflows/build-latex.yml
vendored
Normal file
16
.github/workflows/build-latex.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: build-latex
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Compile LaTeX
|
||||||
|
run: pdflatex main.tex
|
Loading…
Add table
Add a link
Reference in a new issue