From 66ac74383c94aef7aaa12752285a3a7d459dc7fc Mon Sep 17 00:00:00 2001 From: Robert Rose Date: Fri, 21 Feb 2025 16:56:51 +0100 Subject: [PATCH] Add zstd-safe to CI tests Build and test zstd-safe with different feature combinations in CI. --- .github/workflows/linux.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 768f2fe5..0651fc17 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -27,3 +27,12 @@ jobs: run: cargo build --verbose --features thin - name: Run tests run: cargo test --verbose --features thin + + - name: Build zstd-safe with feature seekable + run: cargo build --manifest-path zstd-safe/Cargo.toml --verbose --features seekable + - name: Run zstd-safe tests with feature seekable + run: cargo test --manifest-path zstd-safe/Cargo.toml --verbose --features seekable + - name: Build zstd-safe with features std and seekable + run: cargo build --manifest-path zstd-safe/Cargo.toml --verbose --features std,seekable + - name: Run zstd-safe tests with features std and seekable + run: cargo test --manifest-path zstd-safe/Cargo.toml --verbose --features std,seekable