mirror of
https://github.com/rclone/rclone.git
synced 2024-11-28 03:14:55 +01:00
19 lines
324 B
Makefile
19 lines
324 B
Makefile
build:
|
|
go build
|
|
|
|
test:
|
|
go test -cpu 4 -v -race
|
|
|
|
# Get the build dependencies
|
|
build_dep:
|
|
go get -u github.com/kisielk/errcheck
|
|
go get -u golang.org/x/tools/cmd/goimports
|
|
go get -u github.com/golang/lint/golint
|
|
|
|
# Do source code quality checks
|
|
check:
|
|
go vet
|
|
errcheck
|
|
goimports -d . | grep . ; test $$? -eq 1
|
|
-#golint
|