From eb5bc8a083c3fe2eb40b51ee3b8b4f0f7a1e9d7c Mon Sep 17 00:00:00 2001 From: Cameron Moore Date: Thu, 25 Oct 2018 20:29:12 -0500 Subject: [PATCH] feat(build): restore build scope and add osx os Restore the Travis build scope for Go versions after testing. Add OSX as an OS build target. Fixes #225 --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7426a9e8..6faa3e52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,15 @@ sudo: false language: go go: - #- "1.8.x" - #- "1.9.x" - #- "1.10.x" + - "1.8.x" + - "1.9.x" + - "1.10.x" - "1.11.x" - #- tip + - tip os: - linux + - osx - windows matrix: @@ -20,6 +21,7 @@ matrix: - go: tip install: + - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then git config --global core.autocrlf true ; fi - make install-devtools - make deps