summaryrefslogtreecommitdiff
path: root/vendor/github.com/aws/smithy-go/.travis.yml
blob: f8d1035cc332381d9d647b41b2206020a241632e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
language: go
sudo: true
dist: bionic

branches:
  only:
    - main

os:
  - linux
  - osx
  # Travis doesn't work with windows and Go tip
  #- windows

go:
  - tip

matrix:
  allow_failures:
    - go: tip

before_install:
  - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
  - (cd /tmp/; go get golang.org/x/lint/golint)

script:
  - make go test -v ./...;