Skip to content

Commit

Permalink
fixing quarto dependency error
Browse files Browse the repository at this point in the history
  • Loading branch information
shaziaruybal committed Aug 1, 2024
1 parent 2be5112 commit 53c0547
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/check-quarto-render.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,19 @@ jobs:

- name: Set up quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Set up R
uses: r-lib/actions/setup-r@v2

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y pandoc
Rscript -e "install.packages('quarto')"
sudo apt-gt install -y pandoc
R -e 'install.packages("quarto", repos="http://cran.rstudio.com/")'
- name: Render quarto website
run: |
quarto render
R -e 'library(quarto); quarto::quarto render()'
- name: Upload check results
if: failure()
Expand Down

0 comments on commit 53c0547

Please sign in to comment.