Skip to content

Commit 4a15a74

Browse files
ASA-151: Debug R-check-release.yml
1 parent 9d00d3b commit 4a15a74

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.github/workflows/R-check-release.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,20 @@ jobs:
1313
- name: Install R
1414
uses: r-lib/actions/setup-r@v1
1515

16-
- name: Install dependencies
16+
- name: Print wd
1717
run: |
18-
install.packages(c("remotes", "rcmdcheck"))
19-
remotes::install_deps(pkgdir = "./R-package", dependencies = TRUE)
18+
print(getwd())
19+
print(list.files())
2020
shell: Rscript {0}
2121

22-
- name: Check
23-
run: |
24-
options(crayon.enabled = TRUE)
25-
rcmdcheck::rcmdcheck(path = "./R-package", args = "--no-manual", error_on = "error")
26-
shell: Rscript {0}
22+
# - name: Install dependencies
23+
# run: |
24+
# install.packages(c("remotes", "rcmdcheck"))
25+
# remotes::install_deps(pkgdir = "./R-package", dependencies = TRUE)
26+
# shell: Rscript {0}
27+
#
28+
# - name: Check
29+
# run: |
30+
# options(crayon.enabled = TRUE)
31+
# rcmdcheck::rcmdcheck(path = "./R-package", args = "--no-manual", error_on = "error")
32+
# shell: Rscript {0}

0 commit comments

Comments
 (0)