From 1334b0845591b7b2028e8003bc4d8cb35f5d5197 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Thu, 27 Sep 2018 16:12:11 +0100 Subject: [PATCH] enable Travis and Codecov. --- .travis.yml | 22 ++++++++++++++++++++++ codecov.yml | 3 +++ 2 files changed, 25 insertions(+) create mode 100644 .travis.yml create mode 100644 codecov.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..5a95995 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +os: +- linux + +sudo: false + +language: go + +go: +- 1.9.x + +install: +- make deps + +script: +- bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh) + +cache: + directories: + - $GOPATH/src/gx + +notifications: + email: false \ No newline at end of file diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..67a1f6f --- /dev/null +++ b/codecov.yml @@ -0,0 +1,3 @@ +coverage: + range: "50...100" +comment: off \ No newline at end of file