biter777/countries

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: go

go:
  - 1.13.x
  - tip

before_install:
  - go get -t -v ./...

install:
  - go get github.com/biter777/countries

script:
 - go test -v -race -coverprofile=coverage.txt -covermode=atomic

after_success:
  - bash <(curl -s https://codecov.io/bash)
  
notifications:
  email: false