Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 929 Bytes

File metadata and controls

50 lines (35 loc) · 929 Bytes

Contributing to Validator Auto-Updater

Thank you for your interest in contributing to Validator Auto-Updater!

Development Setup

  1. Get the source code:
cd validator-auto-updater
  1. Install Rust (if not already installed):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  1. Build the project:
cargo build --release

Code Style

  • Follow Rust standard formatting: cargo fmt
  • Run clippy before submitting: cargo clippy -- -D warnings
  • Ensure all tests pass: cargo test

Code Changes

  • Use clear, descriptive commit messages if using version control
  • Reference issue numbers when applicable
  • Ensure all tests pass before submitting
  • Update documentation if needed

Testing

Run tests with:

cargo test

Run with verbose output:

cargo test -- --nocapture

Questions?

Feel free to open an issue for questions or discussions.