-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (30 loc) · 777 Bytes
/
Makefile
File metadata and controls
39 lines (30 loc) · 777 Bytes
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
37
38
39
GO ?= go
CONTAINER_TOOL ?= docker
TOOLS_DIR := hack/tools
GOLANGCI_LINT_VER := 2.11.4
GOLANGCI_LINT := $(TOOLS_DIR)/golangci-lint-$(GOLANGCI_LINT_VER)
.PHONY: check
check: fmt lint test
.PHONY: build
build:
@mkdir -p bin
$(GO) build -o ./bin/mdextract .
.PHONY: docker-build
docker-build:
$(CONTAINER_TOOL) build -t mdextract:dev .
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: lint
lint: $(GOLANGCI_LINT)
$(GOLANGCI_LINT) run $(GOLANGCI_LINT_FLAGS) ./...
.PHONY: lint-fix
lint-fix: override GOLANGCI_LINT_FLAGS := $(GOLANGCI_LINT_FLAGS) --fix
lint-fix: lint
.PHONY: test
test:
$(GO) test -cover -race ./...
## tools
$(GOLANGCI_LINT):
mkdir -p $(TOOLS_DIR)
$(GO) tool github.com/ntnn/mindl download -tool golangci-lint -common -out $@ -version $(GOLANGCI_LINT_VER)