Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaRaccoons authored Sep 4, 2024
1 parent 5be58d0 commit 45fcaaa
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: true

- name: Render Quarto
uses: quarto-dev/quarto-actions/render@v2
with:
path: FOXPaper.qmd

- name: Archive pdf output
uses: actions/upload-artifact@v4
with:
name: pdf-output
path: FOXPaper.pdf

0 comments on commit 45fcaaa

Please sign in to comment.