remove unnecessary compaction condition check for key below watermark #141
Workflow file for this run
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: CI (pull request) | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: setup rust toolchain | |
| run: rustup update && rustup toolchain install | |
| - uses: taiki-e/install-action@nextest | |
| - uses: taiki-e/install-action@mdbook | |
| - name: check and build | |
| run: cargo x ci |