diff --git a/.travis.yml b/.travis.yml index 6e00c94..e42e648 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: go sudo: false go: -- 1.12.x -- 1.11.x +- 1.14.x +- 1.13.x env: - GO111MODULE=on @@ -21,4 +21,4 @@ before_script: - staticcheck ./... script: -- if [[ "$TRAVIS_GO_VERSION" == 1.12.* ]] ; then ./scripts/cov.sh TRAVIS; else go test -v -race ./...; fi \ No newline at end of file +- if [[ "$TRAVIS_GO_VERSION" =~ 1.13 ]] ; then ./scripts/cov.sh TRAVIS; else go test -v -race -p=1 --failfast ./...; fi