From 7ca7d947817a874ef2d3e79aefd6ceb658ab5ef0 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jan 2025 20:04:47 +0000 Subject: [PATCH] chore: add {test,shell}-in-docker recipes to justfile --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index 83fcea9..aa33071 100644 --- a/justfile +++ b/justfile @@ -10,6 +10,12 @@ build: # cargo test --example get cargo mutants --jobs 4 +test-in-docker: + docker run --rm -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest cargo test + +shell-in-docker: + docker run --rm -it -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest bash + self-test: just test $PWD forgejo-todo-checker