Skip to content

Commit

Permalink
feat: makefile release command
Browse files Browse the repository at this point in the history
  • Loading branch information
wuriyanto48 committed Feb 4, 2019
1 parent f9bd129 commit 7f8cd9e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
TEST_OPTS=-covermode=atomic -v -cover -race -coverprofile=coverage.txt

APP_NAME=github.com/Bhinneka/kece
APP_RELEASE_VERSION=v0.0.0

# Testing
test:
@go test $(TEST_OPTS) ./...
Expand All @@ -21,4 +24,7 @@ lint:
--enable=unconvert \
./...

.PHONY: lint lint-prepare clean build unittest test
release:
./scripts/build.sh $(APP_NAME) $(APP_RELEASE_VERSION)

.PHONY: lint lint-prepare clean build unittest test release

0 comments on commit 7f8cd9e

Please sign in to comment.