#1 Implements Notifications API

This commit is contained in:
2018-10-17 11:15:27 +02:00
parent 4a1bec45bf
commit 75e83977e4
8 changed files with 256 additions and 20 deletions

View File

@ -5,7 +5,7 @@ GO_FILES := $(shell find . -name '*.go' | grep -v _test.go)
.PHONY: all dep build clean test coverage coverhtml lint
all: build
all: dep lint test race coverage
lint: ## Lint the files
@golint -set_exit_status ${PKG_LIST}
@ -28,5 +28,8 @@ dep: ## Get the dependencies
@mkdir -p vendor
@govendor add +external
push: dep lint test coverage ## Push to git repository
@git push origin master
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'