summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 5eb24e4..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-language: go
-
-sudo: required
-
-go:
- - "1.13"
- - "1.14"
- - "1.15"
-
-env:
- - TEST_SUITE=unit
- - TEST_SUITE=linters
-
-before_install:
- - go get -t -v ./...
-
-before_script:
- - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
- sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
- fi
-
-script: |
- set -x
- case $TEST_SUITE in
- unit)
- ./.travis/tests.sh
- ;;
- linters)
- ./.travis/linters.sh
- ;;
- *)
- echo "[!] Unknown test suite: ${TEST_SUITE}. Exiting."
- exit 1
- esac
-
-after_success:
- - bash <(curl -s https://codecov.io/bash)
-