use crate::utils::consts;
pub fn github_action_runner() -> bool {
std::env::var(consts::GITHUB_ACTIONS) == Ok("true".to_string())
}
pub fn gitlab_ci_runner() -> bool {
std::env::var(consts::GITLAB_CI) == Ok("true".to_string())
}
pub fn google_cloud_runner() -> bool {
std::env::var(consts::CLOUD_BUILD_ID).is_ok() || std::env::var(consts::K_SERVICE).is_ok()
}