-
Notifications
You must be signed in to change notification settings - Fork 18
/
Makefile
76 lines (61 loc) · 1.66 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
TESTS_INIT=tests/minimal_init.lua
TESTS_DIR=tests/
# --- Default targets ---
.PHONY: install
install: install-go-tooling
.PHONY: install-go-tooling
install-go-tooling: install-format-go install-lint-go install-vuln-go
.PHONY: all
all: test format lint vuln git-diff
.PHONY: test
test: test-lua test-go
.PHONY: format
format: format-go
.PHONY: lint
lint: lint-go
.PHONY: vuln
vuln: vuln-go
# --- Targets ---
.PHONY: test-lua
test-lua:
nvim \
--headless \
--noplugin \
-u ${TESTS_INIT} \
-c "PlenaryBustedDirectory ${TESTS_DIR} { minimal_init = '${TESTS_INIT}' }"
.PHONY: test-go
test-go:
# Do not allow tests to be skipped
cd tests/go && \
go test -v ./... | tee /dev/fd/2 | grep -q "SKIP" && exit 1 || exit 0
.PHONY: format-go
format-go:
cd tests/go && \
gci write --skip-generated --skip-vendor -s standard -s default . && \
golines --base-formatter=gofumpt --ignore-generated --tab-len=1 --max-len=120 --write-output .
.PHONY: lint-go
lint-go:
cd tests/go && \
golangci-lint run --verbose ./... && \
go vet ./...
.PHONY: vuln-go
vuln-go:
cd tests/go && \
govulncheck ./... && \
gosec ./...
.PHONY: git-diff
git-diff:
git diff --exit-code
# --- Installation of tooling ---
.PHONY: install-format-go
install-format-go:
go install github.com/daixiang0/gci@latest && \
go install github.com/segmentio/golines@latest && \
go install mvdan.cc/gofumpt@latest # NOTE: golines uses gofumpt
.PHONY: install-lint-go
install-lint-go:
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
.PHONY: install-vuln-go
install-vuln-go:
go install golang.org/x/vuln/cmd/govulncheck@latest
go install github.com/securego/gosec/v2/cmd/gosec@latest