diff --git a/.travis.yml b/.travis.yml index f4833fb..d69c336 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ services: go: - 1.13.x - 1.14.x + - 1.18.x env: global: @@ -54,11 +55,11 @@ install: script: - make build - chmod +x ./integration_test.sh && ./integration_test.sh - - sudo -E TMPDIR=$TMPDIR $(which go) test -race -v -coverprofile=coverage.out -covermode=atomic -coverpkg=$(go list ./... | grep -v '/vendor/' | paste -sd, -) ./... + - sudo -E TMPDIR=$TMPDIR $(which go) test -race -v -coverprofile=coverage.out -covermode=atomic -coverpkg=$(go list ./... | grep -v '/vendor/' | paste -sd, -) ./... - make lint after_success: - sudo -E $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -after_script: +after_script: - chmod +x ./travis-teardown.sh && ./travis-teardown.sh