build: add clippy recipe to justfile
This commit is contained in:
parent
0c1f4ba125
commit
97f794a36e
1 changed files with 3 additions and 0 deletions
3
justfile
3
justfile
|
@ -6,5 +6,8 @@ build:
|
||||||
test: build
|
test: build
|
||||||
docker run --rm -v $PWD:/app/ {{ image }} cargo test
|
docker run --rm -v $PWD:/app/ {{ image }} cargo test
|
||||||
|
|
||||||
|
clippy: build
|
||||||
|
docker run --rm -v $PWD:/app/ {{ image }} cargo clippy
|
||||||
|
|
||||||
shell: build
|
shell: build
|
||||||
docker run --rm -it -v $PWD:/app/ {{ image }} bash
|
docker run --rm -it -v $PWD:/app/ {{ image }} bash
|
||||||
|
|
Loading…
Add table
Reference in a new issue