introduce lefthook support to check commits

This commit is contained in:
Alex Zenla 2024-02-01 10:36:54 +00:00
parent e7cea3d7ed
commit cbfac5cdf4
No known key found for this signature in database
GPG Key ID: 067B238899B51269
3 changed files with 16 additions and 2 deletions

View File

@ -1,5 +1,5 @@
use env_logger::Env;
use anyhow::{anyhow, Result}; use anyhow::{anyhow, Result};
use env_logger::Env;
use hypha::container::init::ContainerInit; use hypha::container::init::ContainerInit;
use std::env; use std::env;

View File

@ -1,6 +1,6 @@
use env_logger::Env;
use anyhow::{anyhow, Result}; use anyhow::{anyhow, Result};
use clap::{Parser, Subcommand}; use clap::{Parser, Subcommand};
use env_logger::Env;
use hypha::ctl::Controller; use hypha::ctl::Controller;
use std::path::PathBuf; use std::path::PathBuf;

14
lefthook.toml Normal file
View File

@ -0,0 +1,14 @@
[pre-commit]
parallel = true
[pre-commit.commands.build]
run = "cargo build --target x86_64-unknown-linux-gnu"
[pre-commit.commands.test]
run = "cargo test --target x86_64-unknown-linux-gnu"
[pre-commit.commands.fmt]
run = "cargo fmt --all -- --check"
[pre-commit.commands.clippy]
run = "cargo clippy --target x86_64-unknown-linux-gnu"