From e9d46bfe32ab9db6622e8d2c2b2b54a60357d9ec Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Tue, 3 Nov 2020 20:17:19 +0000 Subject: [PATCH] Remove Travis configuration --- .travis.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 60e56015..00000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: go -go: - - 1.15.x -env: - - COVER=true -install: - # Fetch dependencies - - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin v1.24.0 - - GO111MODULE=on go mod download - - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - - chmod +x ./cc-test-reporter -before_script: - - ./cc-test-reporter before-build -script: - - make test -after_script: - - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -t gocov -sudo: false -notifications: - email: false