1
2
3
4
5
6
7
8
9
10
/// this is a function for test_ci
pub fn test_ci() {
    println!("test_ci");
}

/// this is a function for ci_test
pub fn ci_test() {
    println!("another test_ci");

}