Skip to content

Commit

Permalink
Merge pull request #82 from lytics/gcs_filesize_check
Browse files Browse the repository at this point in the history
Gcs filesize check + go.mod
  • Loading branch information
erinpentecost authored Oct 30, 2020
2 parents 121b53e + 076ddfd commit ffaa16e
Show file tree
Hide file tree
Showing 6 changed files with 476 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: go

go:
- 1.12.x
- 1.13.x
- 1.15.x
- master

before_install:
- go get -t -v ./...
Expand Down
2 changes: 1 addition & 1 deletion awss3/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/araddon/gou"
"github.com/bmizerany/assert"
"github.com/stretchr/testify/assert"

"github.com/lytics/cloudstorage"
"github.com/lytics/cloudstorage/awss3"
Expand Down
22 changes: 22 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module github.com/lytics/cloudstorage

go 1.15

require (
cloud.google.com/go/storage v1.10.0
github.com/Azure/azure-sdk-for-go v40.5.0+incompatible
github.com/Azure/go-autorest/autorest v0.11.10 // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/araddon/gou v0.0.0-20190110011759-c797efecbb61
github.com/aws/aws-sdk-go v1.29.34
github.com/dnaeon/go-vcr v1.1.0 // indirect
github.com/pborman/uuid v1.2.1
github.com/pkg/sftp v1.11.0
github.com/satori/go.uuid v1.2.0 // indirect
github.com/stretchr/testify v1.5.1
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
golang.org/x/net v0.0.0-20201029055024-942e2f445f3c
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
google.golang.org/api v0.30.0
)
Loading

0 comments on commit ffaa16e

Please sign in to comment.