Skip to content

Commit

Permalink
Update r-cmd-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JuKo007 authored Jun 13, 2024
1 parent 21aa6dc commit 624db3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/r-cmd-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,13 @@ jobs:
- name: Install rJava and other R dependencies
run: |
export _R_CHECK_FORCE_SUGGESTS_ = false
Rscript -e "install.packages('rJava')"
Rscript -e "install.packages('remotes')"
Rscript -e "remotes::install_cran(c('stringi', 'qdapRegex', 'readr', 'tokenizers', 'data.table', 'ggplot2', 'anytime', 'mgsub', 'stats', 'qdap', 'ggwordcloud', 'dplyr', 'ragg', 'checkmate', 'visNetwork', 'lubridate', 'methods', 'leaflet'))"
- name: Check
shell: bash
run: R CMD build . && R CMD check *tar.gz --as-cran
run: |
export _R_CHECK_FORCE_SUGGESTS_=false
R CMD build .
R CMD check *tar.gz --as-cran

0 comments on commit 624db3b

Please sign in to comment.