If you would like to contribute code to this project, fork the repository and send a pull request.
If you have not installed Go, install it according to the installation instruction.
Since the go mod
package management tool is used in this project, Go 1.11 or higher version is required.
Before contributing, you need to fork go-streams to your github repository.
- Configure remote for a fork
- git checkout -b <your_branch>
- git add .
- git commit -m "commit message"
- git push --set-upstream origin <your_branch>
- Verify all tests and CI checks pass
- Create a pull request
The coding style suggested by the Golang community is used in go-streams
. For details, refer to style doc.