From 7b0e0a44eca30fa84a663a9c4f9247ae4f37ea34 Mon Sep 17 00:00:00 2001 From: Jean Fan Date: Fri, 12 Jul 2024 10:22:52 -0400 Subject: [PATCH] Update R-CMD-check.yaml Remove 'as-cran' check since remotes not supported and we are not in cran anyway (https://github.com/r-lib/devtools/issues/1717) --- .github/workflows/R-CMD-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 9af60cf..057c8dc 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -71,7 +71,7 @@ jobs: - name: Check env: _R_CHECK_CRAN_INCOMING_REMOTE_: false - run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--ignore-vignettes", "--as-cran"), error_on = "error", check_dir = "check") + run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--ignore-vignettes"), error_on = "error", check_dir = "check") shell: Rscript {0} - name: Upload check results