dotfiles/Makefile

10 lines
108 B
Makefile

.PHONY: all test lint
all: test lint
test:
go test -race -failfast ./...
lint:
golangci-lint run ./...