Files
scratch-link4linux/Makefile
2024-01-13 14:55:03 +01:00

14 lines
260 B
Makefile

init:
go install golang.org/x/tools/cmd/goimports@v0.17.0
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./bin v1.55.2
fmt:
goimports -w .
test:
go test -v ./...
lint:
./bin/golangci-lint run ./...