mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
15 lines
298 B
Makefile
15 lines
298 B
Makefile
BINPATH := $(abspath ./bin)
|
|
GOLANGCI := $(BINPATH)/golangci-lint
|
|
|
|
$(GOLANGCI):
|
|
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(BINPATH) v1.17.1
|
|
$(GOLANGCI) --version
|
|
|
|
.PHONY: lint
|
|
lint: $(GOLANGCI)
|
|
$(GOLANGCI) run
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test ./...
|