rust/justfile
Paul Campbell 97f794a36e
All checks were successful
/ test (map[name:stable]) (push) Successful in 42s
/ test (map[name:nightly]) (push) Successful in 40s
build: add clippy recipe to justfile
2025-01-16 07:41:45 +00:00

13 lines
292 B
Makefile

image := "git.kemitix.get/kemitix/rust:test"
build:
docker build . -t {{ image }}
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