feat(transport): configurable max_message_size with ant-quic 0.22.0 #261
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |