Skip to content

Commit

Permalink
build(make): add clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamel committed Jun 28, 2022
1 parent 069f3ef commit 84d6d11
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ test-go: build ## Pass the test for the go source code
@echo "${COLOR_CYAN} 🧪 Passing go tests${COLOR_RESET}"
@go test -v -covermode=count -coverprofile ./target/coverage.out ./...

## Clean:
clean: ## Remove all the files from the target folder
@echo "${COLOR_CYAN} 🗑 Cleaning folder $(TARGET_FOLDER)${COLOR_RESET}"
@rm -rf $(TARGET_FOLDER)/

## Help:
help: ## Show this help.
@echo ''
Expand Down

0 comments on commit 84d6d11

Please sign in to comment.