Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jhorzek committed Jul 21, 2024
1 parent 3ef6529 commit 1494cae
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ jobs:

- name: Install mxsem
run: |
# specify library location (copied from teichert at https://stackoverflow.com/questions/32540919/library-is-not-writable)
dir.create(Sys.getenv("R_LIBS_USER"), recursive = TRUE) # create personal library
.libPaths(Sys.getenv("R_LIBS_USER")) # add to the path
install.packages("devtools")
devtools::install_deps(".")
devtools::install(pkg = ".")
Expand All @@ -75,7 +78,9 @@ jobs:
ref: 'main'
- name: Extended tests
run: |
devtools::install_deps(".")
install.packages("lavaan")
install.packages("testthat")
install.packages("devtools")
devtools::build(pkg = ".", binary = TRUE)
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")
shell: Rscript {0}

0 comments on commit 1494cae

Please sign in to comment.