Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.07 KB

File metadata and controls

32 lines (22 loc) · 1.07 KB

Contributing to terratest-utils

Thank you for your interest in contributing! We welcome improvements, bug fixes, and new helpers for integration testing.

How to Contribute

  1. Fork the repository and create your branch from main.

  2. Make your changes (code, documentation, tests, etc.).

  3. Run tests and linting to ensure your changes do not break existing functionality:

    go fmt ./...
    go vet ./...
    go test ./...
  4. Commit your changes with clear and descriptive messages.

  5. Push to your fork and open a Pull Request (PR) against the main branch.

  6. Describe your changes in the PR, including motivation and any relevant context.

Guidelines

  • Follow existing code style and conventions.
  • Update documentation as needed for your changes.
  • Ensure all tests pass before submitting your PR.
  • If adding new features, include corresponding tests.

Code of Conduct

Be respectful and constructive in all interactions. For questions or help, open an issue or start a discussion.

Thank you for helping make this project better!