diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a035382f..5af69e5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: run: echo "Cache was restored" - name: Set up python env - run: uv sync --dev + run: uv venv .venv --dev - name: Run Checks continue-on-error: true diff --git a/Makefile b/Makefile index 72ff4c6e..161c2081 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,10 @@ dist.dir := dist build.wheel := $(dist.dir)/agml-$(version).tar.gz +setup: ## setup env + uv venv .venv + + .PHONY: help help: ## Print the help screen. @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":|:[[:space:]].*?##"}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'