go-github-selfupdate/.travis.yml
2017-12-30 16:14:06 +09:00

16 lines
332 B
YAML

language: go
os:
- linux
- osx
install:
- go get -t -d -v ./...
- go version
- go env
script:
- go build ./selfupdate/
- go build ./cmd/selfupdate-example/
- go build ./cmd/detect-latest-release/
- go test -v -race -coverprofile=coverage.txt ./selfupdate
after_success:
- bash <(curl -s https://codecov.io/bash)