-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from lytics/gcs_filesize_check
Gcs filesize check + go.mod
- Loading branch information
Showing
6 changed files
with
476 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ./... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |
Oops, something went wrong.