Skip to content

Commit b3555cb

Browse files
authored
fix tested go versions (#25)
* fix tested go versions * remove 1.12
1 parent 8243ce4 commit b3555cb

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.travis.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
language: go
22
go:
3-
- "1.7"
4-
- "1.8"
5-
- "1.9"
6-
- "1.10"
7-
- "1.11"
3+
- "1.13"
4+
- "1.14"
85
- master
96

107
before_install:
@@ -18,11 +15,11 @@ script:
1815

1916
jobs:
2017
include:
21-
- name: "Linting with Go 1.11"
18+
- name: "Linting with Go 1.14"
2219
script:
2320
- go get -u golang.org/x/tools/cmd/goimports
2421
- FILES=`find . -iname '*.go' -type f -not -path "./vendor/*"`
2522
- gofmt -d $FILES
2623
- go tool vet $FILES || echo "\n\nunexported field test is failing? that's ok. More failing? not ok.\n\n"
2724
- goimports -d $FILES
28-
go: "1.11"
25+
go: "1.14"

0 commit comments

Comments
 (0)