From 7bbc897b25cb03a79d297278209b53c4231d0da5 Mon Sep 17 00:00:00 2001 From: beorn7 Date: Thu, 23 Apr 2020 17:19:33 +0200 Subject: [PATCH] Add Go 1.14 Signed-off-by: beorn7 --- .circleci/config.yml | 4 ++++ .travis.yml | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 26df813..6f1e023 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,5 +70,9 @@ workflows: name: go-1-13 go_version: "1.13" run_lint: true + - test: + name: go-1-14 + go_version: "1.14" + run_lint: true # Style is only checked against the latest supported Go version. run_style: true diff --git a/.travis.yml b/.travis.yml index 2c8f06f..f2082c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,10 @@ go: - 1.11.x - 1.12.x - 1.13.x - + - 1.14.x + script: - make check_license unused test-short - - if [[ ! $TRAVIS_GO_VERSION =~ ^1\.(9|10)\. ]]; then make lint; fi + - if [[ ! $TRAVIS_GO_VERSION =~ ^1\.(9|10|11)\. ]]; then make lint; fi # Style is only checked against the latest supported Go version. - - if [[ $TRAVIS_GO_VERSION =~ ^1\.(13)\. ]]; then make style; fi + - if [[ $TRAVIS_GO_VERSION =~ ^1\.(14)\. ]]; then make style; fi