Files
decort-golang-sdk/Makefile

11 lines
140 B
Makefile
Raw Permalink Normal View History

2026-06-19 17:37:20 +03:00
all: lint test
.PHONY: all
lint:
golangci-lint run --timeout 600s
test:
go test -v -failfast -timeout 600s ./...
.DEFAULT_GOAL := lint