Skip to content

Commit

Permalink
github action test
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchiLaser committed Feb 5, 2024
1 parent 02e4a07 commit cb13658
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build documentation

on: [push, pull_request]

jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
- uses: actions/checkout@v3

- name: compile LaTeX document
- uses: xu-cheng/latex-action@v3
with:
working_directory: documentation
root_file: main.tex
texlive_version: 2023

- name: export pdf file
- uses: actions/upload-artifact@v3
with:
name: PDF
path: main.pdf

0 comments on commit cb13658

Please sign in to comment.