Codebase list golang-github-ccding-go-stun / HEAD .travis.yml
HEAD

Tree @HEAD (Download .tar.gz)

.travis.yml @HEADraw · history · blame

language: go
arch:
  - amd64
  - ppc64le
go:
  - 1.14.x
  - tip
script:
  - go build ./...
  - go test -v ./...
  - go test -race -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
  - bash <(curl -s https://codecov.io/bash)