gaper/.travis.yml

30 lines
383 B
YAML

language: go
go:
# - 1.7.x
# - 1.8.x
# - 1.9.x
- 1.10.x
# - master
before_script:
- go version
- make setup
- make lint
script:
- make test
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false
deploy:
- provider: script
skip_cleanup: true
script: curl -sL http://git.io/goreleaser | bash
on:
tags: true