Enable CI
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-03-28 16:59:22 +01:00
parent 8d0dabfe0e
commit 6172b36b26
4 changed files with 1120 additions and 517 deletions

View File

@ -286,3 +286,13 @@ async fn main() -> std::io::Result<()> {
.run()
.await
}
#[cfg(test)]
mod test {
use crate::Args;
#[test]
fn verify_cli() {
use clap::CommandFactory;
Args::command().debug_assert()
}
}