Codebase list golang-github-matryer-is / 2eca3dae-5156-4dfa-aa31-a4ccb57054da/main .travis.yml
2eca3dae-5156-4dfa-aa31-a4ccb57054da/main

Tree @2eca3dae-5156-4dfa-aa31-a4ccb57054da/main (Download .tar.gz)

.travis.yml @2eca3dae-5156-4dfa-aa31-a4ccb57054da/mainraw · history · blame

os:
  - linux
  - osx
  - windows

language: go

sudo: required

go:
  # "1.x" always refers to the latest Go version, inc. the patch release.
  # e.g. "1.x" is 1.13 until 1.13.1 is available.
  - 1.x
  - 1.6.x
  - 1.7.x
  - 1.8.x
  - 1.9.x
  - 1.10.x
  - 1.11.x
  - 1.12.x
  - 1.13.x
  - 1.14.x
  - tip

matrix:
  allow_failures:
    - os: windows
      go: tip
  exclude:
      # OSX 1.6.4 is not present in travis.
      # https://github.com/travis-ci/travis-ci/issues/10309
    - go: 1.6.x
      os: osx

install:
  - go get -d -v ./...

script:
  - go build -v ./...
  - go test ./...