rust/justfile
Paul Campbell 4bd50bdadf
All checks were successful
/ test (map[name:nightly]) (push) Successful in 17s
/ test (map[name:stable]) (push) Successful in 53s
build: justfile adds test and shell recipes
2025-01-15 08:02:08 +00:00

10 lines
220 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
shell: build
docker run --rm -it -v $PWD:/app/ {{ image }} bash