From 30770bd360cca23ede5c22273ac224821fc4dbd4 Mon Sep 17 00:00:00 2001 From: Mathieu Debove Date: Thu, 14 Mar 2019 11:39:44 +0100 Subject: [PATCH] Update Travis CI --- .travis.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9cd5328..93f61ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,22 @@ language: go go: - 1.11.x + - 1.12.x os: - linux - osx + - windows env: - GO111MODULE=on script: - - go build - - go test ./... +# - go build +# - go test ./... + - go version + +deploy: + - provider: script + skip_cleanup: true + script: curl -sL https://git.io/goreleaser | bash + on: + tags: true + condition: $TRAVIS_OS_NAME = linux