cargo-governor 2.0.3

Machine-First, LLM-Ready, CI/CD-Native release automation tool for Rust crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Check command options

use clap::Parser;

/// Check command options
#[derive(Parser, Debug, Clone)]
pub struct CheckOpts {
    /// Comma-separated list of checks to run
    #[arg(long)]
    pub checks: Option<String>,

    /// Fail fast on first error
    #[arg(long)]
    pub fail_fast: bool,
}