pull/4/head
Tamir Duberstein 2015-05-11 15:33:37 -04:00
parent d0a5f1749d
commit 4d36d97d1d
1 changed files with 9 additions and 1 deletions

View File

@ -5,7 +5,7 @@ regen:
make -C testdata regen
.PHONY: check
check: errcheck go-nyet
check: errcheck go-nyet golint
errcheck testdata/out/compress-memcopy.go
errcheck testdata/out/compress-nomemcopy.go
errcheck testdata/out/debug.go
@ -16,9 +16,17 @@ check: errcheck go-nyet
go-nyet testdata/out/debug.go
go-nyet testdata/out/nocompress-memcopy.go
go-nyet testdata/out/nocompress-nomemcopy.go
golint testdata/out/compress-memcopy.go
golint testdata/out/compress-nomemcopy.go
golint testdata/out/debug.go
golint testdata/out/nocompress-memcopy.go
golint testdata/out/nocompress-nomemcopy.go
errcheck:
go get github.com/kisielk/errcheck
go-nyet:
go get github.com/barakmich/go-nyet
golint:
go get github.com/golang/lint/golint