Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 929 Bytes

File metadata and controls

34 lines (28 loc) · 929 Bytes

Contributing

Contributions are welcome. By participating, you agree to maintain a respectful and constructive environment.

For coding standards, testing patterns, architecture guidelines, commit conventions, and all development practices, refer to the Development Guide.

Prerequisites

Development Workflow

  1. Fork and clone the repository
  2. Create a branch: git checkout -b feat/my-change
  3. Install dependencies:
    go mod download
  4. Build the binary:
    make build
  5. Make your changes
  6. Validate:
    make lint
    make test
    make sast
  7. Update CHANGELOG.md under [Unreleased]
  8. Commit following the commit conventions
  9. Open a pull request against main