pipechecker 0.2.9

CI/CD Pipeline Auditor - Catch errors before you push
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Pipeline auditors - each module validates a specific aspect of CI/CD configurations
//!
//! # Auditors
//! - `dag`: Dependency graph analysis (cycles, missing deps)
//! - `pinning`: Action/Docker image pinning validation (requires `network` feature)
//! - `secrets`: Secret and environment variable auditing
//! - `syntax`: Pipeline structure validation
//! - `timeout`: Missing job timeout detection

pub mod dag;
pub mod secrets;
pub mod syntax;
pub mod timeout;

#[cfg(feature = "network")]
pub mod pinning;