[go: up one dir, main page]

is_ci

Function is_ci 

Source
pub fn is_ci() -> bool
Expand description

Returns true if a CI environment is detected.

ยงExample

fn main() {
    let ci = ci_info::is_ci();

    println!("Is CI: {}", ci);
}