Skip to content

Commit fe75699

Browse files
authored
Merge pull request #741 from prometheus/beorn7/go-requirement
Add Go 1.14
2 parents 4e3a96e + 7bbc897 commit fe75699

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,9 @@ workflows:
7070
name: go-1-13
7171
go_version: "1.13"
7272
run_lint: true
73+
- test:
74+
name: go-1-14
75+
go_version: "1.14"
76+
run_lint: true
7377
# Style is only checked against the latest supported Go version.
7478
run_style: true

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ go:
66
- 1.11.x
77
- 1.12.x
88
- 1.13.x
9-
9+
- 1.14.x
10+
1011
script:
1112
- make check_license unused test-short
12-
- if [[ ! $TRAVIS_GO_VERSION =~ ^1\.(9|10)\. ]]; then make lint; fi
13+
- if [[ ! $TRAVIS_GO_VERSION =~ ^1\.(9|10|11)\. ]]; then make lint; fi
1314
# Style is only checked against the latest supported Go version.
14-
- if [[ $TRAVIS_GO_VERSION =~ ^1\.(13)\. ]]; then make style; fi
15+
- if [[ $TRAVIS_GO_VERSION =~ ^1\.(14)\. ]]; then make style; fi

0 commit comments

Comments
 (0)