travis -- move dependency installation to install section, simplify go test invocation to test all subdirs in one go

This commit is contained in:
Eugene Bujak 2018-09-07 16:13:03 +03:00
parent 6fc50cd743
commit ebf2380af4
1 changed files with 6 additions and 4 deletions

View File

@ -10,8 +10,10 @@ os:
- linux
- osx
script:
- cd dnsfilter && go get -d -t . && go test
- cd ../coredns_plugin && go get -d -t . && go test
- cd .. && make
install:
- go get -d -t ./...
script:
- go test ./...
- make