dk-runner 0.2.77

dkod verification runner — CI/CD pipeline execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::new_without_default)]

pub mod workflow;
pub mod executor;
pub mod steps;
pub mod findings;
pub mod scheduler;
pub mod runner;
pub mod changeset;

pub use runner::{Runner, detect_workflow};
pub use executor::{Executor, StepOutput, StepStatus};
pub use workflow::types::{Workflow, Stage, Step, StepType};