2021-01-31 15:56:06 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# CODE HEALTH
|
|
|
|
###############################################################################
|
|
|
|
|
2021-05-27 12:33:38 +02:00
|
|
|
# gofumpt and gci all go files
|
2021-01-31 15:56:06 +02:00
|
|
|
fmt:
|
2021-05-27 12:33:38 +02:00
|
|
|
gofumpt -w .
|
2021-01-31 15:56:06 +02:00
|
|
|
gci -w -local github.com/nikoksr/notify .
|
|
|
|
.PHONY: fmt
|
|
|
|
|
|
|
|
# Run all the linters
|
|
|
|
lint:
|
|
|
|
golangci-lint run ./...
|
|
|
|
.PHONY: lint
|
|
|
|
|
2021-05-27 12:33:38 +02:00
|
|
|
ci: lint test
|
2021-01-31 15:56:06 +02:00
|
|
|
.PHONY: ci
|
|
|
|
|
|
|
|
.DEFAULT_GOAL := ci
|