Skip to content

Commit

Permalink
Remove vendor check until supported by go mod verify
Browse files Browse the repository at this point in the history
Tracking issue: golang/go#27348
  • Loading branch information
stp-ip committed Mar 5, 2019
1 parent f7b0e46 commit e435af0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -26,13 +26,11 @@ before_install:
install:
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash dist/gitcookie.sh; fi
- go get golang.org/x/lint/golint
- go get github.com/FiloSottile/vendorcheck
- GO111MODULE=off go get github.com/alecthomas/gometalinter

script:
- gometalinter --install
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --tests --vendor ./...
- vendorcheck ./...
- go test -race ./...

after_script:
Expand Down
2 changes: 0 additions & 2 deletions appveyor.yml
Expand Up @@ -19,15 +19,13 @@ install:
- go version
- go env
- go get golang.org/x/lint/golint
- go get github.com/FiloSottile/vendorcheck
- GO111MODULE=off go get github.com/alecthomas/gometalinter

build: off

test_script:
- gometalinter --install
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --tests --vendor ./...
- vendorcheck ./...
- go test -race ./...

after_test:
Expand Down

0 comments on commit e435af0

Please sign in to comment.