refactor: remove !cf.is_null
assert
#28
This file contains 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: RockdDB CI | |
on: [push, pull_request] | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
components: rustfmt, clippy | |
toolchain: 1.75.0 | |
- name: Install liburing | |
run: sudo apt-get install liburing2 liburing-dev clang | |
- name: Cargo fmt | |
run: cargo fmt --all --check | |
- name: Cargo clippy | |
run: cargo clippy --all --all-features --all-targets | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.75.0 | |
- name: Install liburing | |
run: sudo apt-get install liburing2 liburing-dev clang libsnappy-dev | |
- name: Cargo test | |
run: cargo test --all --all-features | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions-rs/audit-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |