aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorappilon <apilon@hashicorp.com>2019-02-27 16:43:31 -0500
committerGitHub <noreply@github.com>2019-02-27 16:43:31 -0500
commit844b5a68d8af4791755b8f0ad293cc99f5959183 (patch)
tree255c250a5c9d4801c74092d33b7337d8c14438ff /.travis.yml
parent303b299eeb6b06e939e35905e4b34cb410dd9dc3 (diff)
parent15c0b25d011f37e7c20aeca9eaf461f78285b8d9 (diff)
downloadterraform-provider-statuscake-844b5a68d8af4791755b8f0ad293cc99f5959183.tar.gz
terraform-provider-statuscake-844b5a68d8af4791755b8f0ad293cc99f5959183.tar.zst
terraform-provider-statuscake-844b5a68d8af4791755b8f0ad293cc99f5959183.zip
Merge pull request #27 from terraform-providers/go-modules-2019-02-22
[MODULES] Switch to 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