1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// SPDX-License-Identifier: Apache-2.0 //! `heddle ci` local executor. mod render; mod run; mod target; use anyhow::Result; use heddle_cli_args::{CiCommands, Cli}; /// Dispatch a CI subcommand. pub fn cmd_ci(cli: &Cli, command: &CiCommands) -> Result<()> { match command { CiCommands::Run(args) => run::run_local(cli, args), } }