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"
+]