Finally making the conversion from Travis-CI to GitHub Actions, but am running into errors with tinytex. In particular, my PDF vignette requires certain latex packages which are not part of base tinytex. Is there a way to include these in my R-CMD-check.yaml
? For example, I need pdfpages.sty
and my the relevant portion (I think) of my R-CMD-check.yaml
is listed below:
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-tinytex@master
- uses: r-lib/actions/setup-r@v1
with:
r-version: ${{ matrix.config.r }}