File: Makefile

package info (click to toggle)
golang-github-centurylinkcloud-clc-sdk 0.0.2%2Bgit20161004.f62483c-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 236 kB
  • sloc: sh: 18; makefile: 13
file content (12 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
VERSION=0.1

.PHONY : test cover deps
test: 
	godep go test ./...
cover:
	./cover.sh
deps:
	go get github.com/tools/godep
	go get golang.org/x/tools/cmd/goimports
	go get github.com/mattn/goveralls
	godep restore