-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (19 loc) · 1022 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
BUILDDIR ?= $(CURDIR)/build
###############################################################################
### Build ###
###############################################################################
BUILD_TARGETS := build install
build: BUILD_ARGS=-o $(BUILDDIR)/
$(BUILD_TARGETS):
go $@ $(BUILD_ARGS) ./.
###############################################################################
### Linting ###
###############################################################################
lint:
golangci-lint run --out-format=tab
###############################################################################
### Testing ###
###############################################################################
TEST_PACKAGES=$(shell go list ./... | grep -v '/example-report$$')
test:
go test -mod=readonly $(TEST_PACKAGES)