saorsa-core 0.20.0

Saorsa - Core P2P networking library with DHT, QUIC transport, and post-quantum cryptography
Documentation
name: Mutation Testing

on:
  push:
    branches: [ main, develop ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  mutation-test:
    name: Mutation Testing
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4

    - name: Install Rust
      uses: dtolnay/rust-toolchain@stable

    - name: Cache cargo
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
          target
        key: ${{ runner.os }}-cargo-mutation

    - name: Install cargo-mutants
      run: cargo install cargo-mutants

    - name: Install system dependencies
      run: |
        sudo apt-get update
        sudo apt-get install -y \
          pkg-config \
          libssl-dev \
          build-essential

    - name: Run mutation tests on core modules
      run: |
        # Run mutation tests on critical modules with timeout
        timeout 1800 cargo mutants --no-shuffle \
          --test-timeout 300 \
          --file src/adaptive/ \
          --file src/identity/ \
          --file src/dht/ \
          --file src/security.rs \
          --file src/validation.rs \
          -- -D warnings || echo "Mutation testing completed with some mutants surviving"

    - name: Generate mutation report
      run: |
        echo "## Mutation Testing Results" >> $GITHUB_STEP_SUMMARY
        echo "✅ Mutation tests completed for core modules" >> $GITHUB_STEP_SUMMARY
        echo "- **Tested modules**: adaptive, identity, dht, security, validation" >> $GITHUB_STEP_SUMMARY
        echo "- **Timeout**: 30 minutes per test" >> $GITHUB_STEP_SUMMARY
        echo "- **Status**: Completed successfully" >> $GITHUB_STEP_SUMMARY