Files
go-stun/.travis.yml
2020-10-08 00:41:09 -04:00

14 lines
240 B
YAML

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)