Skip to content

fix: fixed workflow with tinytex #5

fix: fixed workflow with tinytex

fix: fixed workflow with tinytex #5

Workflow file for this run

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- uses: r-lib/actions/setup-tinytex@v2
- name: Install additional LaTeX packages
run: |
tlmgr update --self
tlmgr install grfext
tlmgr install thumbpdf
tlmgr list --only-installed
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'