aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-28 02:15:02 -0700
committerFuwn <[email protected]>2022-06-28 02:15:02 -0700
commitd011b3bf0284ef0e9f87b09e0a25770c96a5c167 (patch)
treec57ede11a2c2df01c11cb14e8ad9871a8eaf65cc /Makefile.toml
downloadsumy-0.1.0.tar.xz
sumy-0.1.0.zip
feat: initial commitHEAD0.1.0main
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml28
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml
new file mode 100644
index 0000000..880526b
--- /dev/null
+++ b/Makefile.toml
@@ -0,0 +1,28 @@
+[tasks.fmt]
+args = ["fmt"]
+command = "cargo"
+toolchain = "nightly"
+workspace = false
+
+[tasks.check]
+args = ["check", "--all-features"]
+command = "cargo"
+workspace = false
+
+[tasks.clippy]
+args = ["clippy", "--all-features"]
+command = "cargo"
+workspace = false
+
+[tasks.test]
+args = ["test", "--all-features"]
+command = "cargo"
+workspace = false
+
+[tasks.checkf]
+dependencies = ["fmt", "check"]
+workspace = false
+
+[tasks.checkfc]
+dependencies = ["fmt", "check", "clippy"]
+workspace = false