From 18ce6190f9ab507f87c1a5d15b8ca071053c4fee Mon Sep 17 00:00:00 2001 From: Laura A DeCicco Date: Mon, 29 Jan 2024 11:07:01 -0600 Subject: [PATCH] Updated test jobs --- .github/workflows/test-coverage.yaml | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 0178cf7a..b5a5b542 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -14,30 +14,14 @@ jobs: steps: - uses: actions/checkout@c0a81a463886bb75afe234e07a9fd5bb79219196 - - uses: r-lib/actions/setup-r@52330cc136b963487918a8867f948ddf954e9e63 + - uses: r-lib/actions/setup-r@756399d909bf9c180bbdafe8025f794f51f2da02 - uses: r-lib/actions/setup-pandoc@52330cc136b963487918a8867f948ddf954e9e63 - - name: Query dependencies - run: | - install.packages('remotes') - saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) - shell: Rscript {0} - - - name: Cache R packages - uses: actions/cache@v1 + - uses: r-lib/actions/setup-r-dependencies@756399d909bf9c180bbdafe8025f794f51f2da02 with: - path: ${{ env.R_LIBS_USER }} - key: macOS-r-4.0-2-${{ hashFiles('.github/depends.Rds') }} - restore-keys: macOS-r-4.0-2- - - - name: Install dependencies - run: | - options(pkgType = "binary") - install.packages(c("remotes")) - remotes::install_deps(dependencies = TRUE) - remotes::install_cran("covr") - shell: Rscript {0} + extra-packages: any::rcmdcheck + needs: check - name: Test coverage run: covr::codecov()