diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..253deb7 --- /dev/null +++ b/.github/workflows/main.yml @@ -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