diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14aed741d..885e83915 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,10 +21,10 @@ jobs: - name: Install latest nightly to test also against unstable feature flag uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable override: true components: rustfmt - name: Run tests - run: cargo test --all-features --verbose --workspace + run: cargo test --features mmap,brotli-compression,lz4-compression,snappy-compression,failpoints --verbose --workspace - name: Check Formatting run: cargo fmt --all -- --check diff --git a/Cargo.toml b/Cargo.toml index 4dc03c390..da5e51daf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,7 +91,6 @@ snappy-compression = ["snap"] failpoints = ["fail/failpoints"] unstable = [] # useful for benches. -wasm-bindgen = ["uuid/wasm-bindgen"] [workspace] members = ["query-grammar", "bitpacker", "common", "fastfield_codecs", "ownedbytes"]