From 5f667555dc7e11f59f500c5529f0e60a8b48c027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A1n=20I=2E=20Del=20Valle?= Date: Wed, 27 May 2020 16:04:07 -0700 Subject: [PATCH] Bumping up CI build to go 1.14 (#124) Bumping up Travis CI build to go 1.14 as well as increasing the timeout for go tests. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4f325ed..ab3b228 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ -sudo: required +os: linux dist: xenial language: go @@ -10,7 +10,7 @@ branches: - future go: - - "1.10.x" + - "1.14.x" env: global: @@ -24,10 +24,11 @@ before_install: - test -z "`for d in $GO_USR_DIRS; do goimports -d $d/*.go | tee /dev/stderr; done`" install: + - go mod download - docker-compose up -d script: - - go test -race -coverprofile=coverage.txt -covermode=atomic -v github.com/paypal/gorealis + - go test -timeout 30m -race -coverprofile=coverage.txt -covermode=atomic -v github.com/paypal/gorealis after_success: - bash <(curl -s https://codecov.io/bash)