build: add fmt recipe to justfile
All checks were successful
/ test (map[name:nightly]) (push) Successful in 53s
/ test (map[name:stable]) (push) Successful in 56s

This commit is contained in:
Paul Campbell 2025-01-16 08:25:16 +00:00
parent 2a9c2cef76
commit 05d4233d3f

View file

@ -12,5 +12,8 @@ clippy: build
run: build run: build
docker run --rm -v $PWD:/app/ {{ image }} cargo run docker run --rm -v $PWD:/app/ {{ image }} cargo run
fmt: build
docker run --rm -v $PWD:/app/ {{ image }} cargo fmt
shell: build shell: build
docker run --rm -it -v $PWD:/app/ {{ image }} bash docker run --rm -it -v $PWD:/app/ {{ image }} bash