Files
decort-golang-sdk/Makefile
2023-03-14 14:45:51 +03:00

11 lines
140 B
Makefile

all: lint test
.PHONY: all
lint:
golangci-lint run --timeout 600s
test:
go test -v -failfast -timeout 600s ./...
.DEFAULT_GOAL := lint