Skip to content

Commit 0bd4490

Browse files
author
Julien Pivotto
authored
Support go 1.15 (#251)
* Support go 1.15 Signed-off-by: Julien Pivotto <[email protected]>
1 parent 273427a commit 0bd4490

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,8 @@ workflows:
6363
- test:
6464
name: go-1-14
6565
go_version: "1.14"
66+
- test:
67+
name: go-1-15
68+
go_version: "1.15"
6669
# Style is only checked against the latest supported Go version.
6770
run_style: true

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ go:
66
- 1.11.x
77
- 1.12.x
88
- 1.13.x
9+
- 1.14.x
10+
- 1.15.x
911

1012
script:
1113
- make test
1214
# style is only checked against the latest supported Go version.
13-
- if [[ $TRAVIS_GO_VERSION =~ ^1\.(13)\. ]]; then make style; fi
15+
- if [[ $TRAVIS_GO_VERSION =~ ^1\.(15)\. ]]; then make style; fi

0 commit comments

Comments
 (0)