swh:1:snp:bbfddd3343a0fc8af19439fcdc0183e28cced444
Raw File
Tip revision: c10008ef66e9d822126f9136ce98fc83c8494e8b authored by pat-s on 30 September 2020, 20:10:13 UTC
http -> https
Tip revision: c10008e
tic.R
if (Sys.info()[["sysname"]] != "Windows") {
  get_stage("script") %>%
    add_code_step(RWeka::WPM("refresh-cache")) %>%
    add_code_step(RWeka::WPM("install-package", "XMeans"))
}

# R CMD Check
do_package_checks(error_on = "warning", codecov = FALSE)

# pkgdown
if (ci_on_ghactions() && ci_has_env("BUILD_PKGDOWN")) {
  get_stage("before_deploy") %>%
    add_step(step_install_github("mlr-org/mlr3pkgdowntemplate"))
  do_pkgdown()
}

if (ci_is_env("CODECOV", "true")) {
  get_stage("after_success") %>%
    add_code_step(RWeka::WPM("refresh-cache")) %>%
    add_code_step(RWeka::WPM("install-package", "XMeans")) %>%
    add_code_step(covr::codecov())
}
back to top