View source: R/construct_runners.R
construct_runners | R Documentation |
Construct runner configurations across multiple Operating Systems (OS) for GitHub Actions workflow.
construct_runners(
os = c("ubuntu-latest", "macOS-latest", "windows-latest"),
bioc = list("devel", "release", "release"),
r = list("auto", "auto", "auto"),
python_version = list(NULL, NULL, NULL),
versions_explicit = FALSE,
run_check_cont = FALSE,
cont = construct_cont(default_tag = bioc[[1]], run_check_cont = run_check_cont),
rspm = list(NULL, NULL, NULL),
verbose = TRUE
)
os |
Which OS to launch GitHub Actions on. See here for all options. |
bioc |
Which Bioconductor version to use on each OS. See bioc_r_versions documentation for all options. |
r |
Which R version to use on each OS. |
python_version |
Which python version to use on each OS
(e.g. "3.10", "3.7.5", or "3.x").
( |
versions_explicit |
Specify R/Bioc versions explicitly
(e.g. |
run_check_cont |
Check whether the requested container repo (and the tag, if specified) exist using check_cont. |
cont |
Which Docker container to use on each OS
( |
rspm |
Which R repository manager to use on each OS
( |
verbose |
Print messages. |
Named list of configurations for each runner OS.
runners <- construct_runners()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.