ci_group 0.1.0

RAII log groups for GitHub Actions and Azure Pipelines. Fixes swallowed logs.
Documentation
1
2
3
4
5
fn main() {
    let _g = ci_group::open("Panic Group");
    panic!("intentional");
}