diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f30fc9fc0..0ba097035 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,6 +1,6 @@ name: RocksDB CI -on: [ push, pull_request ] +on: [push, pull_request] env: RUST_VERSION: 1.71.1 @@ -49,7 +49,16 @@ jobs: - name: Set PKG_CONFIG_PATH run: echo "PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV - name: Run clippy - run: cargo clippy --all-targets --all-features -- -D warnings + run: | + cargo clippy --all-targets --features \ + jemalloc \ + io-uring \ + valgrind \ + mt_static \ + rtti \ + multi-threaded-cf \ + serde1 \ + -- -D warnings audit: name: Security audit @@ -68,7 +77,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - build: [ Linux, macOS, Windows ] + build: [Linux, macOS, Windows] include: - build: Linux os: ubuntu-latest