From 356b0251b8a38134955ae012fc83ed852fa15662 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Fri, 11 Nov 2016 15:33:38 -0500 Subject: [PATCH] chore: adds some recipies to the justfile --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/justfile b/justfile index 5ea0ac25..db055f50 100644 --- a/justfile +++ b/justfile @@ -7,3 +7,13 @@ update-contributors: @echo "" >> CONTRIBUTORS.md @githubcontrib --owner kbknapp --repo clap-rs --sha master --cols 6 --format md --showlogin true --sortBy login >> CONTRIBUTORS.md @rm CONTRIBUTORS.md.bak + +run-test TEST: + cargo test --test {{TEST}} + +run-tests: + cargo test --features "yaml unstable" + +lint: + rustup override add nightly + cargo build --features lints && rustup override remove