Contributing
Contributing
Resources for contributing to Kure.
- Development Guide - Setup, testing, code quality, and CI/CD workflows
- GitHub Workflows - CI/CD pipeline documentation
Quick Start
# Clone the repository
git clone https://github.com/go-kure/kure.git
cd kure
# Install tools
make tools
# Run checks
make check
# Run full pre-commit validation
make precommitBranch Workflow
main is protected. Create a feature branch:
git checkout -b feat/my-feature main
# make changes
git push -u origin feat/my-feature
gh pr createRequired CI checks: lint, test, build.