From e04fecfc79ccb7890097cb5c810b06b152f8c8d6 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 18 Apr 2023 21:51:44 +0000 Subject: ci(cargo-make): fix runner definitions --- Makefile.toml | 16 ++++++++++++++-- 1 file 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" -- cgit v1.2.3