dotfiles/Makefile

10 lines
108 B
Makefile
Raw Normal View History

2022-07-30 16:09:57 +00:00
.PHONY: all test lint
2022-07-04 05:37:10 +00:00
all: test lint
test:
2022-07-30 16:09:57 +00:00
go test -race -failfast ./...
2022-07-04 05:37:10 +00:00
lint:
golangci-lint run ./...