Skip to content
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
language: go

go: "1.9"
go: "1.11.1"

go_import_path: github.com/nanopack/shaman

services:
- postgresql

before_script:
- scripts/travis_consul.sh
- sudo -H pip install awscli

install:
- go get github.com/kardianos/govendor
- govendor sync

- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
script:
- govendor test +local -cover -v
- go test ./...

after_success:
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
Expand Down
292 changes: 292 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 50 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
branch = "master"
name = "github.com/gorilla/pat"

[[constraint]]
branch = "master"
name = "github.com/jcelliott/lumber"

[[constraint]]
name = "github.com/miekg/dns"
version = "1.0.4"

[[constraint]]
branch = "master"
name = "github.com/nanobox-io/golang-nanoauth"

[[constraint]]
name = "go.etcd.io/etcd"
version = "3.3.10"

[prune]
go-tests = true
unused-packages = true
Loading