build: add 'mise run test'
All checks were successful
/ test (map[name:stable]) (push) Successful in 1m46s
/ test (map[name:nightly]) (push) Successful in 2m18s
/ test (map[name:v1.81.0]) (push) Successful in 1m32s

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