add Travis CI integration (#4)

This commit is contained in:
Adam Babik 2019-02-11 09:34:24 +01:00 committed by GitHub
parent e7caa232b3
commit 4380b59995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.travis.yml Normal file
View File

@ -0,0 +1,16 @@
notifications:
email: false
language: go
go:
- 1.10.x
- 1.11.x
sudo: false
jobs:
include:
- stage: Lint
before_script: make install-dev
script:
- make lint
- stage: Test
script:
- make test-race