Add landscape mode in #8 #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [main, master] | |
workflow_dispatch: | |
name: render-examples | |
jobs: | |
render-examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install TeX Live packages | |
run: sudo apt install -y texlive-base texlive-xetex latexmk | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: release | |
use-public-rspm: true | |
- name: Install R dependencies | |
run: | | |
install.packages("rmarkdown") | |
install.packages("MASS") | |
install.packages("broom") | |
install.packages("ggplot2") | |
install.packages("kableExtra") | |
shell: Rscript {0} | |
- uses: quarto-dev/quarto-actions/setup@v2 | |
- uses: quarto-dev/quarto-actions/render@v2 | |
- uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
QUARTO_PUB: ${{ secrets.QUARTO_PUB }} | |
target: quarto-pub | |
path: template.qmd |