R/is_on_ci.R

Defines functions is_on_ci is_on_travis is_on_appveyor

Documented in is_on_appveyor is_on_ci is_on_travis

#' Deprecated function, use \link[beautier]{is_on_appveyor}
#' @return TRUE if run on AppVeyor, FALSE otherwise
#' @author Richèl J.C. Bilderbeek
#' @export
is_on_appveyor <- function() {
  stop("Deprecated function, use 'beautier::is_on_appveyor'")
}

#' Deprecated function, use \link[beautier]{is_on_travis}
#' @return TRUE if run on Travis CI, FALSE otherwise
#' @author Richèl J.C. Bilderbeek
#' @export
is_on_travis <- function() {
  stop("Deprecated function, use 'beautier::is_on_travis'")
}

#' Deprecated function, use \link[beautier]{is_on_ci}
#' @return TRUE if run on AppVeyor or Travis CI, FALSE otherwise
#' @author Richèl J.C. Bilderbeek
#' @export
is_on_ci <- function() {
  stop("Deprecated function, use 'beautier::is_on_ci'")
}

Try the beastier package in your browser

Any scripts or data that you put into this service are public.

beastier documentation built on Nov. 7, 2023, 5:08 p.m.