github.com/rancher/moq@v0.0.0-20200712062324-13d1f37d2d77/.travis.yml (about)

     1  language: go
     2  
     3  sudo: false
     4  
     5  branches:
     6    only:
     7      - master
     8  
     9  jobs:
    10    include:
    11      - os: linux
    12        go: 1.11.x
    13      - os: linux
    14        go: 1.12.x
    15      - os: linux
    16        go: 1.13.x
    17      - os: linux
    18        go: tip
    19      - os: osx
    20        go: 1.13.x
    21      - os: windows
    22        go: 1.13.x
    23  
    24  before_install:
    25    - go get golang.org/x/lint/golint
    26  
    27  before_script:
    28    - go vet ./...
    29    - golint ./...
    30  
    31  script:
    32    - go test -v ./...