mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 23:04:23 +00:00
chore: adds some recipies to the justfile
This commit is contained in:
parent
55e7385685
commit
d4740a5978
1 changed files with 10 additions and 0 deletions
10
justfile
10
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
|
||||
|
|
Loading…
Reference in a new issue