Skip to content

Commit

Permalink
Add zstd-safe to CI tests (#329)
Browse files Browse the repository at this point in the history
Build and test zstd-safe with different feature combinations in CI.
  • Loading branch information
rorosen authored Feb 21, 2025
1 parent d4e4de4 commit 54ef4c9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 54ef4c9

Please sign in to comment.