summaryrefslogtreecommitdiffstats
path: root/Makefile.toml
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-04-13 18:14:13 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-04-13 18:14:13 +0100
commit6f4dcfbf65f522b318ebd359df5658a72b618392 (patch)
treed4b1591be1139a4b67d3d4f0b340a133a27ba189 /Makefile.toml
parent23e0b8adf1aae1bb1b29b6bde346a073a870e307 (diff)
fix(clippy): get ci passing again
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 8cd80c77a..a4388ebcb 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -3,6 +3,18 @@
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
SKIP_TEST = false
+# Add clippy to the default flow
+[tasks.dev-test-flow]
+dependencies = [
+ "format-flow",
+ "format-toml-conditioned-flow",
+ "pre-build",
+ "build",
+ "post-build",
+ "test-flow",
+ "clippy",
+]
+
# Patching the default flows to skip testing of wasm32-wasi targets
[tasks.pre-test]
condition = { env = { "CARGO_MAKE_CRATE_TARGET_TRIPLE" = "wasm32-wasi" } }