rust/justfile
Paul Campbell b6a4e61fc3
Some checks failed
/ test (map[name:stable]) (push) Failing after 54s
/ test (map[name:nightly]) (push) Failing after 59s
feat: push-next uses image v4.0.0
2025-01-15 08:27:41 +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