Skip to content

Commit

Permalink
fix tested go versions (liip#25)
Browse files Browse the repository at this point in the history
* fix tested go versions

* remove 1.12
  • Loading branch information
mweibel authored and kevinlynx committed Jul 28, 2021
1 parent c94053c commit f959765
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
language: go
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
- "1.13"
- "1.14"
- master

before_install:
Expand All @@ -18,11 +15,11 @@ script:

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

0 comments on commit f959765

Please sign in to comment.