Skip to content

Commit

Permalink
Add Go 1.14
Browse files Browse the repository at this point in the history
Signed-off-by: beorn7 <[email protected]>
  • Loading branch information
beorn7 committed Apr 23, 2020
1 parent 4e3a96e commit 7bbc897
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7bbc897

Please sign in to comment.