diff options
| author | Fuwn <[email protected]> | 2021-07-03 14:37:18 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-07-03 14:37:18 +0000 |
| commit | 073027a7726d52c38c4eeb2f80bf7931e6185ff8 (patch) | |
| tree | 59d098206d0bf40d5445d98c80e1afb70718b3c6 /Makefile.toml | |
| parent | refactor(whirl_common): rename `seconds_to_hrtime` to `unixts_to_hrtime` (diff) | |
| download | whirl-073027a7726d52c38c4eeb2f80bf7931e6185ff8.tar.xz whirl-073027a7726d52c38c4eeb2f80bf7931e6185ff8.zip | |
test(make): add `checkall` task which performs a suite of checks
like `checkfc` but more!
Diffstat (limited to 'Makefile.toml')
| -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"] |