Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.05 KB

README.md

File metadata and controls

34 lines (27 loc) · 1.05 KB

monoRepoR

R-CMD-check-all build-and-release

Demo repo to apply the same workflows on several R packages in a monorepo.

Generating test packages

# create testpkg01
## NB: the command line below prompts a message that requires an answer
usethis::create_package("testpkg01")
usethis::use_mit_license()
devtools::load_all()
devtools::document()
devtools::check()
# back to root
setwd("..")
# create testpkg02
usethis::create_package("testpkg02")
usethis::use_mit_license()
devtools::load_all()
devtools::document()
devtools::check()

Docker

Docker image available at the following URL https://hub.docker.com/repository/docker/kevcaz/monorepor/general

docker push kevcaz/monorepor:v0.1.2