forked from Securing-DevOps/invoicer-chapter3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (25 loc) · 755 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
PROJECT := github.com/Securing-DevOps/invoicer
GO := GO15VENDOREXPERIMENT=1 go
GOGETTER := GOPATH=$(shell pwd)/.tmpdeps go get -d
GOLINT := golint
all: test vet generate install
install:
$(GO) install $(PROJECT)
vendor:
govend -u --prune
tag: all
git tag -s $(TAGVER) -a -m "$(TAGMSG)"
lint:
$(GOLINT) $(PROJECT)
vet:
$(GO) vet $(PROJECT)
test:
$(GO) test -covermode=count -coverprofile=coverage.out $(PROJECT)
showcoverage: test
$(GO) tool cover -html=coverage.out
generate:
$(GO) generate
.PHONY: all test generate clean vendor