-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b28a207
commit f320ff7
Showing
2 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
project_name = rule-engine | ||
|
||
help: ## This help dialog. | ||
@grep -F -h "##" $(MAKEFILE_LIST) | grep -F -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | ||
|
||
run-local: ## Run the app locally | ||
go run main.go | ||
|
||
requirements: ## Generate go.mod & go.sum files | ||
go mod tidy | ||
|
||
clean-packages: ## Clean packages | ||
go clean -modcache | ||
|
||
test: ## Run the tests | ||
go test | ||
|
||
test-v: ## Run the tests | ||
go test -v | ||
|
||
test-cover: ## Run the tests | ||
go test -cover |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters