aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-18 21:51:44 +0000
committerFuwn <[email protected]>2023-04-18 21:51:44 +0000
commite04fecfc79ccb7890097cb5c810b06b152f8c8d6 (patch)
treeb246064c41dcc072cc012a32f267970bfca8f974
parentchore: update copyright headers (diff)
downloadwindmark-e04fecfc79ccb7890097cb5c810b06b152f8c8d6.tar.xz
windmark-e04fecfc79ccb7890097cb5c810b06b152f8c8d6.zip
ci(cargo-make): fix runner definitions
-rw-r--r--Makefile.toml16
1 files changed, 14 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 3215d13..06832aa 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -14,10 +14,22 @@ command = "cargo"
toolchain = "nightly"
[tasks.checkf]
-dependencies = ["fmt", "check"]
+script_runner = "@shell"
+script = '''
+cargo make fmt
+cargo make check tokio
+cargo make check async-std
+'''
[tasks.checkfc]
-dependencies = ["fmt", "check", "clippy"]
+script_runner = "@shell"
+script = '''
+cargo make fmt
+cargo make check tokio
+cargo make check async-std
+cargo make clippy tokio
+cargo make clippy async-std
+'''
[tasks.genkey]
command = "openssl"