aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 00b478e..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-language: go
-
-go:
- - "1.11"
- - "1.12"
-
-go_import_path: github.com/go-git/go-git/v5
-
-env:
- - GIT_VERSION=master
- - GIT_VERSION=v1.9.3
- - GIT_VERSION=v2.11.0
-
-cache:
- directories:
- - $HOME/.git-dist
-
-before_script:
- - export GIT_DIST_PATH=$HOME/.git-dist
- - make build-git
-
-before_install:
- - git config --global user.email "travis@example.com"
- - git config --global user.name "Travis CI"
-
-install:
- - go get -v -t ./...
-
-script:
- - export GIT_EXEC_PATH=$GIT_DIST_PATH
- - export PATH=$GIT_DIST_PATH:$PATH
- - git version
- - make test-coverage
- - go vet ./...
-
-after_success:
- - bash <(curl -s https://codecov.io/bash)