Skip to content

fix: optimize ib size for 3 TCP round trips (#218) #115

fix: optimize ib size for 3 TCP round trips (#218)

fix: optimize ib size for 3 TCP round trips (#218) #115

Workflow file for this run

name: "sim-rs"
on:
pull_request:
paths:
- "data/**"
- "sim-rs/**"
push:
branches:
- main
paths:
- "data/**"
- "sim-rs/**"
jobs:
sim-rs-check:
name: "Test"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: "1.84.1"
cache-workspaces: sim-rs
- name: Test Rust packages
working-directory: sim-rs
run: |
cargo test
if [ $? -ne 0 ]; then
echo "Cargo test failed"
exit 1
fi