aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlex Pilon <apilon@hashicorp.com>2019-02-22 18:24:22 -0500
committerAlex Pilon <apilon@hashicorp.com>2019-02-22 18:24:22 -0500
commit07971ca38143c5faf951d152fba370ddcbe26ad5 (patch)
tree09af1ef91c782de921efc83113907184c8adecee /.travis.yml
parent9b6f05970a001f683b9c886c652de81f00cd5f00 (diff)
downloadterraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.tar.gz
terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.tar.zst
terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.zip
deps: use go modules for dep mgmt
run go mod tidy remove govendor from makefile and travis config set appropriate env vars for go modules
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index e85a5f2..ab7522f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,11 +12,9 @@ install:
12# packages that live there. 12# packages that live there.
13# See: https://github.com/golang/go/issues/12933 13# See: https://github.com/golang/go/issues/12933
14- bash scripts/gogetcookie.sh 14- bash scripts/gogetcookie.sh
15- go get github.com/kardianos/govendor
16 15
17script: 16script:
18- make test 17- make test
19- make vendor-status
20- make vet 18- make vet
21- make website-test 19- make website-test
22 20
@@ -27,3 +25,5 @@ matrix:
27 fast_finish: true 25 fast_finish: true
28 allow_failures: 26 allow_failures:
29 - go: tip 27 - go: tip
28env:
29 - GOFLAGS=-mod=vendor GO111MODULE=on