Skip to content

mchirico/go-pubsub

Repository files navigation

Go CI codecov

go-pubsub

PubSub for ts-express

Build with vendor

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

# If you make changes to imported packages 
go mod tidy


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/)

mpubsub