rust/justfile
Paul Campbell 5f3178a61c
Some checks failed
/ test (map[name:stable]) (push) Failing after 34s
/ test (map[name:nightly]) (push) Failing after 40s
feat: push-next uses image v4.0.0
2025-01-15 08:31:30 +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