From 2820a223b46a4f9cdf5443c62ae78317a3ec096b Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 11 Jan 2025 17:10:52 +0000 Subject: [PATCH] build: add 'mise run test' --- .gitignore | 1 + mise.toml | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 mise.toml diff --git a/.gitignore b/.gitignore index ea8c4bf..96ef6c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /target +Cargo.lock diff --git a/mise.toml b/mise.toml new file mode 100644 index 0000000..0d130ca --- /dev/null +++ b/mise.toml @@ -0,0 +1,10 @@ +[tasks.test] +description = "Test the image" +run = [ + "cargo machete", + "cargo fmt --check", + "cargo clippy", + "cargo test", + "cargo build", + "cargo run" +]