Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.12 KB

CONTRIBUTING.md

File metadata and controls

54 lines (37 loc) · 1.12 KB

Contribute

A guide for contributing to uuid

Getting Started

  1. Install asdf - A CLI tool that can manage multiple language runtime versions on a per-project basis

  2. Clone the repo and open in VSCode

git clone https://github.com/flexstack/uuid
code uuid
  1. Install the project's dependencies
asdf install
go mod download

Development

Vet code

go vet ./...

Run tests

go test -v ./... -bench=. -benchmem

Open an issue

If you find a bug or want to request a new feature, please open an issue.

Submit a pull request

Before submitting a feature pull request, it is important to open an issue to discuss what you plan to work on to ensure success in releasing your changes. For small bug fixes or improvements, go ahead and submit a pull request without an issue.

  1. Fork the repo
  2. Create a new branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Commit your changes (git commit -am 'Add my feature')
  5. Push to the branch (git push origin feature/my-feature)
  6. Create a new Pull Request

License

MIT