File: Makefile

package info (click to toggle)
golang-github-hashicorp-go-retryablehttp 0.0~git20160810.0.f4ed9b0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 112 kB
  • ctags: 39
  • sloc: makefile: 10
file content (11 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
default: test

test:
	go vet ./...
	go test -race ./...

updatedeps:
	go get -f -t -u ./...
	go get -f -u ./...

.PHONY: default test updatedeps