From a3f5dc469d9899048315f604b5ecc80b7c5705df Mon Sep 17 00:00:00 2001 From: Kevin Atkinson Date: Fri, 17 Nov 2017 22:36:56 -0500 Subject: [PATCH] Update Travis CI to use standard test script and go 1.9.x. --- .travis.yml | 9 ++++----- codecov.yml | 3 +++ 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 codecov.yml diff --git a/.travis.yml b/.travis.yml index 46392bd..91f0522 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,13 @@ os: language: go go: - - 1.8 + - 1.9.x -install: true +install: + - make deps script: - - make deps - - go vet - - go test ./... + - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh) cache: directories: diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..5f88a9e --- /dev/null +++ b/codecov.yml @@ -0,0 +1,3 @@ +coverage: + range: "50...100" +comment: off