github.com/raarceoml/godog@v0.7.9/.travis.yml (about)

     1  language: go
     2  go:
     3    - 1.5.x
     4    - 1.6.x
     5    - 1.7.x
     6    - 1.8.x
     7    - 1.9.x
     8    - 1.10.x
     9    - 1.11.x
    10  
    11  go_import_path: github.com/DATA-DOG/godog
    12  
    13  install: go install github.com/DATA-DOG/godog/cmd/godog
    14  
    15  script:
    16    - go vet github.com/DATA-DOG/godog
    17    - go vet github.com/DATA-DOG/godog/gherkin
    18    - go vet github.com/DATA-DOG/godog/colors
    19    - test -z "$(go fmt ./...)" # fail if not formatted properly
    20    - godog -f progress
    21    - go test -v -race -coverprofile=coverage.txt -covermode=atomic
    22  
    23  after_success:
    24    - bash <(curl -s https://codecov.io/bash)