File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed
Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: cargo
22
33on :
44 push :
5- branches : ["main "]
5+ branches : ["** "]
66 pull_request :
7- branches : ["main "]
7+ branches : ["** "]
88
99env :
1010 CARGO_TERM_COLOR : always
4848 - name : Run cargo test
4949 run : cargo test --verbose --workspace
5050
51+ compaction-correctness :
52+ name : compaction correctness
53+ runs-on : ubuntu-latest
54+ needs : build
55+ steps :
56+ - uses : actions/checkout@v4
57+
58+ - name : Rust Cache
59+ uses : Swatinem/rust-cache@v2
60+ with :
61+ key : ${{ runner.os }}-${{ runner.arch }}-cargo-${{ hashFiles('**/Cargo.toml') }}-compaction-correctness
62+ cache-on-failure : false
63+
64+ - name : Run compaction correctness gate (default seeds)
65+ run : cargo test --package tonbo --lib compaction_correctness_ -- --nocapture
66+
5167 coverage :
5268 name : coverage (llvm-cov)
5369 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments