From 3f966ddaaaf0afa0d735a059909698d3cd7f0d38 Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Sat, 2 May 2020 09:31:14 +0200 Subject: [PATCH] chore: Added go v1.14 to TravisCI (#282) go v1.14 was released, but we don't test for it right now. Additionally, the allowed failure for go v1.13 is removed, because this library should support this version (and it is not marked as not supported). --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a0b62b6..d6e83c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,13 +8,10 @@ go: - "1.11.x" - "1.12.x" - "1.13.x" + - "1.14.x" before_install: - go get -t ./... -matrix: - allow_failures: - - go: 1.13.x - script: - GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v ./...