ci_info 0.1.3

Provides current CI environment information.
Documentation
1
2
3
4
5
6
7
8
use super::*;

#[test]
fn get_test() {
    let info = get();

    assert_eq!(info.ci, info.vendor.is_some());
}