From b19f8eb73d8d63dbcf1bbfb0960c7bdd70eee7f7 Mon Sep 17 00:00:00 2001 From: Dave Slager Date: Wed, 6 Nov 2024 11:35:33 -0800 Subject: [PATCH] VISCtemplates modifications for standard test-coverage yml --- .github/workflows/test-coverage.yaml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 9882260..7222284 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -2,9 +2,9 @@ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: - branches: [main, master] + branches: [main, master, develop] pull_request: - branches: [main, master] + branches: [main, master, develop] name: test-coverage.yaml @@ -19,6 +19,17 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-tinytex@v2 + + - name: Preinstall required latex packages + run: > + tlmgr install + lastpage morefloats parskip pdflscape textpos multirow lipsum + fancyhdr colortbl soul setspace relsize makecell threeparttable + threeparttablex environ trimspaces + - uses: r-lib/actions/setup-r@v2 with: use-public-rspm: true