Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 814 Bytes

File metadata and controls

42 lines (31 loc) · 814 Bytes

Contributing

Thanks for your interest in Multiarc! Here's how to get started.

Development Setup

git clone https://github.com/Adarsh1Y/opencode-multiarc-plugin.git
cd opencode-multiarc-plugin
make help

Running Tests

make test         # Integration tests
make test-stress  # Stress tests
make test-race    # All tests with race detector
make test-all     # Everything

Code Style

  • Run make lint before submitting
  • Follow standard Go conventions (gofmt, go vet)
  • Keep functions focused and well-named
  • Add tests for new features

Pull Requests

  1. Fork the repo
  2. Create a feature branch
  3. Write tests
  4. Make sure make test-race passes
  5. Submit the PR

Reporting Issues

Include:

  • What you expected vs what happened
  • Steps to reproduce
  • Go version and OS