You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/vendor/github.com/hashicorp/aws-sdk-go-base/GNUmakefile

18 lines
332 B

default: test lint
fmt:
@echo "==> Fixing source code with gofmt..."
gofmt -s -w ./
lint:
@echo "==> Checking source code against linters..."
@golangci-lint run ./...
test:
go test -timeout=30s -parallel=4 ./...
tools:
GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
.PHONY: lint test tools