From 069ed04edfc4f2aa0071f8a63f0639aca3400500 Mon Sep 17 00:00:00 2001 From: Gavin Hayes Date: Wed, 8 Jan 2025 19:24:44 -0500 Subject: [PATCH] ci: add `uv sync` to prepare --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index d1a55d4..dfd7f74 100644 --- a/justfile +++ b/justfile @@ -6,6 +6,9 @@ prepare: if [ -f "./prepare.sh" ]; then bash ./prepare.sh || exit 1 fi + if [ -f "./pyproject.toml" ]; then + uv sync + fi build: #!/usr/bin/env bash