Skip to content

Commit

Permalink
Merge pull request #51 from h3poteto/feature/mod
Browse files Browse the repository at this point in the history
Introduce go module instead of dep
  • Loading branch information
h3poteto committed Nov 2, 2019
2 parents 4abd1b1 + 05bc182 commit 45fc79e
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 317 deletions.
11 changes: 5 additions & 6 deletions .travis.yml
@@ -1,15 +1,14 @@
language: go

env:
- GO111MODULE=on

go:
- "1.10"
- "1.11"
- "1.12"

cache: vendor
- "1.13"

install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
- go mod download

script:
- go build
Expand Down
259 changes: 0 additions & 259 deletions Gopkg.lock

This file was deleted.

52 changes: 0 additions & 52 deletions Gopkg.toml

This file was deleted.

15 changes: 15 additions & 0 deletions go.mod
@@ -0,0 +1,15 @@
module github.com/h3poteto/ecs-goploy

go 1.13

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/aws/aws-sdk-go v1.16.2
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-shellwords v1.0.3
github.com/pkg/errors v0.8.0
github.com/sirupsen/logrus v1.2.0
github.com/spf13/cobra v0.0.3
github.com/spf13/viper v1.3.1
golang.org/x/net v0.0.0-20191101175033-0deb6923b6d9 // indirect
)

0 comments on commit 45fc79e

Please sign in to comment.