mirror of
https://github.com/bettercap/bettercap.git
synced 2025-03-12 04:36:03 -07:00
37 lines
591 B
YAML
37 lines
591 B
YAML
sudo: false
|
|
|
|
language: go
|
|
go:
|
|
# - 1.9.x
|
|
- 1.10.x
|
|
- 1.11.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
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install -y libpcap-dev libnetfilter-queue-dev
|
|
|
|
install:
|
|
- make deps
|
|
|
|
script:
|
|
- make test
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|