export GO111MODULE := on export GOPROXY = https://proxy.golang.org,direct ############################################################################### # DEPENDENCIES ############################################################################### # Install all the build and lint dependencies setup: go mod tidy .PHONY: setup ############################################################################### # TESTS ############################################################################### # Run all the tests test: go test -failfast -race -timeout=5m ./... .PHONY: test cover: go test -race -covermode=atomic -coverprofile=coverage.out ./... .PHONY: cover ############################################################################### # CODE HEALTH ############################################################################### fmt: @go install mvdan.cc/gofumpt@latest @gofumpt -w -l . @go install github.com/daixiang0/gci@latest @gci write --Section Standard --Section Default --Section "Prefix(github.com/nikoksr/notify)" . .PHONY: fmt lint: @go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest @golangci-lint run --config .golangci.yml .PHONY: lint ci: lint test .PHONY: ci ############################################################################### .DEFAULT_GOAL := ci