mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-13 02:50:27 +08:00
1940ff4ac1
* govendor: Update github.com/golang/protobuf * govendor: Update github.com/gobwas/glob github.com/google/go-github * govendor: Update 3 github.com/robertkrimen/otto * govendor: Update 4 golang.org/x golang.org/x/crypto golang.org/x/net golang.org/x/sys golang.org/x/text golang.org/x/time golang.org/x/crypto * govendor: Update 5 github.com/aws/aws-sdk-go * govendor: Update 6 GCLOUD dependencies
19 lines
289 B
Makefile
19 lines
289 B
Makefile
install:
|
|
go install ./...
|
|
|
|
test: install
|
|
go test -v
|
|
toml-test toml-test-decoder
|
|
toml-test -encoder toml-test-encoder
|
|
|
|
fmt:
|
|
gofmt -w *.go */*.go
|
|
colcheck *.go */*.go
|
|
|
|
tags:
|
|
find ./ -name '*.go' -print0 | xargs -0 gotags > TAGS
|
|
|
|
push:
|
|
git push origin master
|
|
git push github master
|
|
|