From 79fb8091dcaac4abaa5db64af5679fd81ffe30de Mon Sep 17 00:00:00 2001 From: strawberry Date: Sat, 1 Jun 2024 00:28:14 -0400 Subject: [PATCH] ci(engage): use all-features direnv devshell for clippy/all Signed-off-by: strawberry --- engage.toml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/engage.toml b/engage.toml index 011244df..3deeada9 100644 --- a/engage.toml +++ b/engage.toml @@ -93,13 +93,15 @@ cargo clippy \ name = "clippy/all" group = "lints" script = """ -cargo clippy \ - --workspace \ - --all-targets \ - --all-features \ - --color=always \ - -- \ - -D warnings +env DIRENV_DEVSHELL=all-features \ + direnv exec . \ + cargo clippy \ + --workspace \ + --all-targets \ + --all-features \ + --color=always \ + -- \ + -D warnings """ [[task]]