mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
20 lines
456 B
Makefile
20 lines
456 B
Makefile
.PHONY: test
|
|
|
|
export GO111MODULE=on
|
|
|
|
GIT_COMMIT ?= $(shell git rev-parse --verify HEAD)
|
|
GIT_VERSION ?= $(shell git describe --tags --always --dirty="-dev")
|
|
DATE ?= $(shell date -u '+%Y-%m-%d %H:%M UTC')
|
|
BUILDER ?= Makefile
|
|
VERSION_FLAGS := -X "main.version=$(GIT_VERSION)" -X "main.date=$(DATE)" -X "main.commit=$(GIT_COMMIT)" -X "main.builtBy=$(BUILDER)"
|
|
|
|
install:
|
|
@go mod vendor
|
|
|
|
build:
|
|
@go build -ldflags='$(VERSION_FLAGS)'
|
|
|
|
test:
|
|
@go test -v ./...
|
|
|