From 60e8f83b2bc8a6a2bc5a2fa3f656a8369ef1f792 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Thu, 26 Apr 2018 12:27:36 +0200 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- .travis.yml | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index b76c11c9..5924e887 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,21 @@ -language: go sudo: false + +language: go go: - - 1.9.3 + - 1.9.x + - 1.10.x + - master + +matrix: + # It's ok if our code fails on unstable development versions of Go. + allow_failures: + - go: master + # Don't wait for tip tests to finish. Mark the test run green if the + # tests pass on the stable versions of Go. + fast_finish: true + +notifications: + email: false git: depth: 3 @@ -9,13 +23,13 @@ git: before_install: - sudo apt-get -qq update - sudo apt-get install -y libpcap-dev libnetfilter-queue-dev - - go get -u github.com/golang/dep/... install: - make deps -go_import_path: github.com/bettercap/bettercap - script: - make test +after_success: + - make codecov +