github.com/kjdelisle/consul@v1.4.5/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    # Please keep this in-sync with the go version we build against in
     5    # build-support/docker/Build-Go.dockerfile.
     6    - "1.11.4"
     7  
     8  branches:
     9    only:
    10      - master
    11      - f-acl-ux
    12  
    13  matrix:
    14    include:
    15      - env: GOTEST_PKGS="./api"
    16      - env: GOTEST_PKGS="./agent"
    17      - env: GOTEST_PKGS="./agent/consul"
    18      - env: GOTEST_PKGS_EXCLUDE="./api|./agent|./agent/consul"
    19  
    20  script:
    21    - make test-ci
    22  
    23  sudo: false