Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 644 Bytes

README.md

File metadata and controls

39 lines (21 loc) · 644 Bytes

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