Skip to content

Commit

Permalink
add setup to make file
Browse files Browse the repository at this point in the history
  • Loading branch information
lalmei committed Nov 25, 2024
1 parent 124a1d0 commit 8a69ea2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
Expand Down

0 comments on commit 8a69ea2

Please sign in to comment.