mirror of
https://github.com/bettercap/bettercap
synced 2025-08-22 14:24:38 -07:00
misc: small fix or general refactoring i did not bother commenting
This commit is contained in:
parent
813ae0a5e9
commit
60e8f83b2b
1 changed files with 19 additions and 5 deletions
24
.travis.yml
24
.travis.yml
|
@ -1,7 +1,21 @@
|
||||||
language: go
|
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
||||||
|
language: go
|
||||||
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:
|
git:
|
||||||
depth: 3
|
depth: 3
|
||||||
|
@ -9,13 +23,13 @@ git:
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get -qq update
|
- sudo apt-get -qq update
|
||||||
- sudo apt-get install -y libpcap-dev libnetfilter-queue-dev
|
- sudo apt-get install -y libpcap-dev libnetfilter-queue-dev
|
||||||
- go get -u github.com/golang/dep/...
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- make deps
|
- make deps
|
||||||
|
|
||||||
go_import_path: github.com/bettercap/bettercap
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make test
|
- make test
|
||||||
|
|
||||||
|
after_success:
|
||||||
|
- make codecov
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue