aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 12f1a55a305cf84e40b3e12ad36ebff760362a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
GO := go
LINTER := golangci-lint
PKGS := ./...

.PHONY: all test lint clean

all: lint test

test:
	$(GO) test $(PKGS)

lint:
	$(LINTER) run $(PKGS)

clean:
	$(GO) clean