mod config {
    use std::collections::HashMap;


  pub struct Project {
    pub name: String,
    pub github_actions: GitHubActions,
  }

  pub struct GitHubActions {
    pub workflows: HashMap<String, GHAWorkflow>,
  }

  pub enum GHAWorkflow {
    CI(CIWorkflow),
    Release,
  }

  pub struct CIWorkflow {
    pub build: bool,
    pub lint: bool,
    pub test: bool,
  }
}

fn main() {
  println!("Hello world");
}