Skip to content

Commit

Permalink
chore: update go deps
Browse files Browse the repository at this point in the history
  • Loading branch information
someone1 committed Jul 23, 2020
1 parent 57e8cbc commit a6d2b2b
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 22 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -4,6 +4,7 @@ go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
env:
- REDIS_ADDR="localhost:6379" APPENGINE_DEV_APPSERVER="$HOME/google-cloud-sdk/bin/dev_appserver.py" GO111MODULE="on" DATASTORE_EMULATOR_HOST="localhost:8432" DATASTORE_PROJECT_ID="nds-test"
services:
Expand All @@ -17,7 +18,7 @@ install:
- "$HOME/google-cloud-sdk/bin/gcloud components install app-engine-python --quiet"
- "$HOME/google-cloud-sdk/bin/gcloud components install app-engine-go --quiet"
- go get -v -d -t ./...
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.1
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.29.0
before_script:
- "$HOME/google-cloud-sdk/bin/gcloud config set project nds-test"
- "$HOME/google-cloud-sdk/bin/gcloud beta emulators datastore start --quiet --no-store-on-disk --consistency=1 --host-port=localhost:8432 &"
Expand Down
23 changes: 10 additions & 13 deletions go.mod
@@ -1,20 +1,17 @@
module github.com/qedus/nds/v2

require (
cloud.google.com/go v0.51.0 // indirect
cloud.google.com/go/datastore v1.0.0
cloud.google.com/go/storage v1.5.0 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/google/go-cmp v0.4.0 // indirect
cloud.google.com/go v0.61.0 // indirect
cloud.google.com/go/datastore v1.2.0
github.com/google/go-cmp v0.5.1 // indirect
github.com/opencensus-integrations/redigo v2.0.1+incompatible
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
go.opencensus.io v0.22.2
golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a // indirect
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
golang.org/x/sys v0.0.0-20200121082415-34d275377bf9 // indirect
golang.org/x/tools v0.0.0-20200121230703-78d067421b02 // indirect
google.golang.org/appengine v1.6.5
google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24 // indirect
go.opencensus.io v0.22.4
golang.org/x/sys v0.0.0-20200722175500-76b94024e4b6 // indirect
golang.org/x/tools v0.0.0-20200723000907-a7c6fd066f6d // indirect
google.golang.org/appengine v1.6.6
google.golang.org/genproto v0.0.0-20200722002428-88e341933a54 // indirect
)

go 1.11

0 comments on commit a6d2b2b

Please sign in to comment.