travis -- move dependency installation to install section, simplify go test invocation to test all subdirs in one go
This commit is contained in:
parent
6fc50cd743
commit
ebf2380af4
10
.travis.yml
10
.travis.yml
|
@ -10,8 +10,10 @@ os:
|
||||||
- linux
|
- linux
|
||||||
- osx
|
- osx
|
||||||
|
|
||||||
script:
|
install:
|
||||||
- cd dnsfilter && go get -d -t . && go test
|
- go get -d -t ./...
|
||||||
- cd ../coredns_plugin && go get -d -t . && go test
|
|
||||||
- cd .. && make
|
script:
|
||||||
|
- go test ./...
|
||||||
|
- make
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue