mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
28 lines
667 B
Makefile
28 lines
667 B
Makefile
|
#! /usr/bin/make -f
|
||
|
|
||
|
# Go related variables.
|
||
|
GOBASE := $(shell pwd)
|
||
|
GOBIN := $(GOBASE)/bin
|
||
|
|
||
|
# Go files.
|
||
|
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
||
|
|
||
|
all: fmt lint test
|
||
|
|
||
|
test:
|
||
|
@echo " > Running unit tests"
|
||
|
GOBIN=$(GOBIN) go test -cover -race -coverprofile=coverage.txt -covermode=atomic -v ./...
|
||
|
|
||
|
fmt:
|
||
|
@echo " > Format all go files"
|
||
|
GOBIN=$(GOBIN) gofmt -w ${GOFMT_FILES}
|
||
|
|
||
|
lint-install:
|
||
|
ifeq (,$(wildcard test -f bin/golangci-lint))
|
||
|
@echo " > Installing golint"
|
||
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s
|
||
|
endif
|
||
|
|
||
|
lint: lint-install
|
||
|
@echo " > Running golint"
|
||
|
bin/golangci-lint run --timeout=2m
|