Skip to content

Commit

Permalink
test latex workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilCad committed Sep 21, 2024
1 parent dc8977e commit 9653186
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/latex.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build LaTeX document

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up LaTeX environment
uses: xu-cheng/latex-action@v3
with:
latexmk: false # Don't use latexmk, we will run xelatex directly
packages: texlive-xetex # Install xelatex specifically

- name: Compile LaTeX document with XeLaTeX
run: |
xelatex -interaction=nonstopmode static/resumeLaTeX/Nikhil_Kadiyan_Resume.tex

0 comments on commit 9653186

Please sign in to comment.