1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-12-14 10:23:19 +02:00
notify/Makefile
Niko Köser 641854e67c
build(make): simplify Makefile
Replace complex formatting loop with simple gofumpt call. Remove two
instructions from 'setup' function.
2021-05-27 12:33:38 +02:00

41 lines
978 B
Makefile

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
###############################################################################
# gofumpt and gci all go files
fmt:
gofumpt -w .
gci -w -local github.com/nikoksr/notify .
.PHONY: fmt
# Run all the linters
lint:
golangci-lint run ./...
.PHONY: lint
ci: lint test
.PHONY: ci
.DEFAULT_GOAL := ci