From 2f46f2b68c5fca27561c43adaa1aa078d1f89613 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 7 Mar 2024 14:43:17 -0800 Subject: [PATCH] chore: auto-update submodules --- justfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 803e014..03e0735 100644 --- a/justfile +++ b/justfile @@ -90,10 +90,14 @@ restart-keyserver-docker: @echo '==> Restart keys-server service on docker' docker-compose -f ./ops/docker-compose.keyserver.yml -f ./ops/docker-compose.storage.yml up -d --build --force-recreate --no-deps keyserver +# Make sure we are running the right submodule versions +update-submodules: + git submodule update --init --recursive + # Lint the project for any quality issues lint: clippy fmt commit-check -unit: lint test test-all test-doc tf-lint +unit: update-submodules lint test test-all test-doc tf-lint devloop: unit fmt-imports