build: add 'mise run test'

This commit is contained in:
Paul Campbell 2025-01-11 17:10:52 +00:00
parent 362a4cd064
commit 2820a223b4
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
/target /target
Cargo.lock

10
mise.toml Normal file
View file

@ -0,0 +1,10 @@
[tasks.test]
description = "Test the image"
run = [
"cargo machete",
"cargo fmt --check",
"cargo clippy",
"cargo test",
"cargo build",
"cargo run"
]