Skip to content

mchirico/FirebaseGo

Repository files navigation

Build Status codecov

FirebaseGo

Checklist:

Set the FIREBASE_BUCKET environment variable to the Google Storage Bucket. Remove "gs://"

Build with vendor

export GO111MODULE=on
go mod init
# Below will put all packages in a vendor folder
go mod vendor



go test -v -mod=vendor ./...

# Don't forget the "." in "./cmd/script" below
go build -v -mod=vendor ./...

Don't forget golint


golint -set_exit_status $(go list ./... | grep -v /vendor/)