only run static checks for Go 1.10 build, not all of them (#42)

This commit is contained in:
Joshua Humphries 2018-07-16 15:46:32 -04:00 committed by GitHub
parent 9d19f10af7
commit 75759db659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -3,10 +3,12 @@ sudo: false
matrix: matrix:
include: include:
- go: 1.7 - go: "1.7"
- go: 1.8 - go: "1.8"
- go: 1.9 - go: "1.9"
- go: "1.10"
env: VET=1
- go: tip - go: tip
script: script:
- make - if [[ "$VET" = 1 ]]; then make; else make deps test; fi