Select Git revision
.travis.yml
-
Will McCutchen authoredWill McCutchen authored
.travis.yml 713 B
---
language: go
go:
- '1.10'
- '1.11'
- '1.12'
script:
- make lint
- make testci
after_success:
# Upload test coverage results to codecov.io
# https://github.com/codecov/example-go/blob/b85638743b972bd0bd2af63421fe513c6f968930/README.md
- bash <(curl -s https://codecov.io/bash)
# With this filter, we aim to restrict Travis's "Build Pushes" feature to build
# only pushes to master, while allowing the "Build Pull Requests" to build all
# incoming pull requests without redundant double-builds.
#
# This is confusing on Travis's end; this captures the exact problem we're
# trying to solve:
# https://stackoverflow.com/a/31882307
branches:
only:
- master
notifications:
email: false