mirror of
https://github.com/lucarin91/scratch-link4linux.git
synced 2025-07-20 17:11:22 +02:00
14 lines
260 B
Makefile
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 ./...
|