...

Text file src/github.com/aws/aws-sdk-go-v2/.travis.yml

Documentation: github.com/aws/aws-sdk-go-v2

     1language: go
     2sudo: true
     3dist: bionic
     4
     5branches:
     6  only:
     7    - main
     8
     9os:
    10  - linux
    11  - osx
    12  # Travis doesn't work with windows and Go tip
    13  #- windows
    14
    15go:
    16  - tip
    17
    18matrix:
    19  allow_failures:
    20    - go: tip
    21
    22before_install:
    23  - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
    24  - (cd /tmp/; go get golang.org/x/lint/golint)
    25
    26env:
    27  - EACHMODULE_CONCURRENCY=4
    28
    29script:
    30  - make ci-test-no-generate;
    31

View as plain text