aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index fa1ee4b..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-language: go
-go_import_path: maunium.net/go/gomuks
-go:
- - "1.12"
-env:
- - "GO111MODULE=on"
-notifications:
- email: false
-install:
- - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- - chmod +x ./cc-test-reporter
- - go get -u github.com/stretchr/testify/assert
- - go install
-before_script:
- - ./cc-test-reporter before-build
-script:
- - go test -v -race ./... -coverprofile c.out
- - go vet ./...
-after_script:
- - ./cc-test-reporter after-build --coverage-input-type gocov --exit-code $TRAVIS_TEST_RESULT