forked from wizelineacademy/github-actions-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
21 lines (17 loc) · 646 Bytes
/
Copy pathmakefile
File metadata and controls
21 lines (17 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.PHONY: help
help: ## Display this help screen
@echo "Please use \`make <target>' where <target> is one of"
@grep -E '^[a-zA-Z_-][a-zA-Z_\-\/]+[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\t\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@echo "make sure to populate your env with \`source bin/env' before using this tool"
.PHONY: deps
deps: ## Install dependencies
@echo "install deps"
.PHONY: test
test: ## Unit test our code
@echo "testing code"
.PHONY: build
build: ## Builds our code
@echo "building site"
.PHONY: deploy
deploy: ## Deploys our built artifact
@echo "deploys our built artifact"