We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 273427a commit 0bd4490Copy full SHA for 0bd4490
.circleci/config.yml
@@ -63,5 +63,8 @@ workflows:
63
- test:
64
name: go-1-14
65
go_version: "1.14"
66
+ - test:
67
+ name: go-1-15
68
+ go_version: "1.15"
69
# Style is only checked against the latest supported Go version.
70
run_style: true
.travis.yml
@@ -6,8 +6,10 @@ go:
6
- 1.11.x
7
- 1.12.x
8
- 1.13.x
9
+ - 1.14.x
10
+ - 1.15.x
11
12
script:
13
- make test
14
# style is only checked against the latest supported Go version.
- - if [[ $TRAVIS_GO_VERSION =~ ^1\.(13)\. ]]; then make style; fi
15
+ - if [[ $TRAVIS_GO_VERSION =~ ^1\.(15)\. ]]; then make style; fi
0 commit comments