Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to go mod and update some dependencies #5

Merged
merged 1 commit into from
Apr 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
language: go
go:
- 1.8.x
- 1.12.x

sudo: required

services:
- docker

install:
- go get github.com/golang/dep/cmd/dep && dep ensure
env:
- GO111MODULE=on GOFLAGS=-mod=vendor

# Prevent Travis from running the `travis_install_go_dependencies`
# script, so we use only the dependencies from the `vendor` folder.
install: true

script:
- go test -v ./... && (CGO_ENABLED=0 GOOS=linux go build -ldflags '-d')
Expand Down
Loading