aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-12 07:42:03 +0000
committerFuwn <[email protected]>2022-05-12 07:42:03 +0000
commitbc5d2312763b4399b246f1e6b9dbfbfa5cd76686 (patch)
tree85ef66154e9a8cad7fbbdd61282d35052c1ea87d /Makefile.toml
downloadgerm-bc5d2312763b4399b246f1e6b9dbfbfa5cd76686.tar.xz
germ-bc5d2312763b4399b246f1e6b9dbfbfa5cd76686.zip
feat(0.1.0): initial release0.1.0
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml26
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml
new file mode 100644
index 0000000..b4967e3
--- /dev/null
+++ b/Makefile.toml
@@ -0,0 +1,26 @@
+# ------------
+# | Wrappers |
+# ------------
+[tasks.fmt]
+args = ["fmt"]
+command = "cargo"
+toolchain = "nightly"
+
+[tasks.check]
+args = ["check"]
+command = "cargo"
+
+[tasks.clippy]
+args = ["clippy"]
+command = "cargo"
+
+# -------------
+# | Executors |
+# -------------
+[tasks.checkf]
+dependencies = ["fmt", "check"]
+workspace = false
+
+[tasks.checkfc]
+dependencies = ["fmt", "check", "clippy"]
+workspace = false