diff --git a/justfile b/justfile index c1a8fa3..30f08b2 100644 --- a/justfile +++ b/justfile @@ -6,5 +6,8 @@ build: test: build docker run --rm -v $PWD:/app/ {{ image }} cargo test +clippy: build + docker run --rm -v $PWD:/app/ {{ image }} cargo clippy + shell: build docker run --rm -it -v $PWD:/app/ {{ image }} bash