diff --git a/mise.toml b/mise.toml index 7d12b41..6207403 100644 --- a/mise.toml +++ b/mise.toml @@ -9,3 +9,8 @@ run = "bash test/cli-test.sh" [tasks.lint] description = "Check bash syntax" run = "bash -n bin/git-wt" + +[tasks.check] +description = "Run all checks (lint + test)" +depends = ["lint", "test"] +run = "echo 'All checks passed'"