build: add clippy recipe to justfile

This commit is contained in:
Paul Campbell 2025-01-14 20:59:32 +00:00
parent 0c1f4ba125
commit 97f794a36e

View file

@ -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