Skip to content

[rust] cache-aware DP - approx tree #48

[rust] cache-aware DP - approx tree

[rust] cache-aware DP - approx tree #48

Workflow file for this run

name: PR Test (Rust)
on:
push:
branches: [ main ]
paths:
- "rust/**"
pull_request:
branches: [ main ]
paths:
- "rust/**"
workflow_dispatch:
concurrency:
group: pr-test-rust-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-test-rust:
if: github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request'
runs-on: 1-gpu-runner
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
bash scripts/ci_install_rust.sh
- name: Run fmt
run: |
source "$HOME/.cargo/env"
cd rust/
cargo fmt -- --check
- name: Run test
timeout-minutes: 20
run: |
source "$HOME/.cargo/env"
cd rust/
cargo test