diff options
| -rw-r--r-- | Makefile.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml index 6931b56..edc3ffc 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -33,6 +33,16 @@ command = "cargo" args = ["clippy"] private = true +[tasks.test] +command = "cargo" +args = ["test"] +private = true + +[tasks.bench] +command = "cargo" +args = ["bench"] +private = true + # ------------- # | Executors | # ------------- @@ -44,6 +54,10 @@ dependencies = ["fmt", "check"] workspace = false dependencies = ["fmt", "check", "clippy"] +[tasks.checkall] +workspace = false +dependencies = ["fmt", "check", "clippy", "test", "bench"] + [tasks.help] workspace = false dependencies = ["checkf"] |