From 35e563a2bfd1a15b55cf0f5244f89ec3d3bf1e67 Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Fri, 19 May 2023 17:46:32 +0200 Subject: [PATCH] chore: update bacon config include the arch feature for the default command (jobs.check) --- bacon.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacon.toml b/bacon.toml index b9f19c9..130bc09 100644 --- a/bacon.toml +++ b/bacon.toml @@ -8,7 +8,7 @@ default_job = "check" [jobs.check] -command = ["cargo", "check", "--color", "always"] +command = ["cargo", "check", "--color", "always", "--features", "arch"] need_stdout = false [jobs.check-all]