Your contributions to Ginkgo are essential for its long-term maintenance and improvement.
integration
folder).godoc
comments and documentation on the gh-pages
branch.
If relevant, please submit a docs PR to that branch alongside your code PR.Thanks for supporting Ginkgo!
Fork the repo, then:
go get github.com/onsi/ginkgo
go get github.com/onsi/gomega/...
cd $GOPATH/src/github.com/onsi/ginkgo
git remote add fork git@github.com:<NAME>/ginkgo.git
ginkgo -r -p # ensure tests are green
go vet ./... # ensure linter is happy
git checkout -b my-feature
git push fork