Skip to content

Commit

Permalink
Support go 1.15 (#251)
Browse files Browse the repository at this point in the history
* Support go 1.15

Signed-off-by: Julien Pivotto <[email protected]>
  • Loading branch information
roidelapluie authored Aug 14, 2020
1 parent 273427a commit 0bd4490
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,8 @@ workflows:
- test:
name: go-1-14
go_version: "1.14"
- test:
name: go-1-15
go_version: "1.15"
# Style is only checked against the latest supported Go version.
run_style: true
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x

script:
- make test
# 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\.(15)\. ]]; then make style; fi

0 comments on commit 0bd4490

Please sign in to comment.