File: Makefile

package info (click to toggle)
golang-github-hashicorp-raft-boltdb 0.0~git20171010.6e5ba93-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 112 kB
  • sloc: makefile: 10
file content (11 lines) | stat: -rw-r--r-- 183 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)

.PHONY: test deps

test:
	go test -timeout=30s ./...

deps:
	go get -d -v ./...
	echo $(DEPS) | xargs -n1 go get -d