Skip to content

Commit

Permalink
ci: added builds/tests for the download feature
Browse files Browse the repository at this point in the history
  • Loading branch information
meuter committed Sep 24, 2023
1 parent 2344619 commit 42819a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Build with default feature
run: cargo build
- name: Build with all features
run: cargo build
run: cargo build --all-features
- name: Build without any feature
run: cargo build --no-default-features
- name: Build each features individually
Expand All @@ -29,3 +29,4 @@ jobs:
cargo build --no-default-features -F xz
cargo build --no-default-features -F zstd
cargo build --no-default-features -F zip
cargo build --no-default-features -F download
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Test with default feature
run: cargo test
- name: Test with all features
run: cargo test
run: cargo test --all-features
- name: Test without any feature
run: cargo test --no-default-features
- name: Test each features individually
Expand All @@ -27,3 +27,5 @@ jobs:
cargo test --no-default-features -F xz
cargo test --no-default-features -F zstd
cargo test --no-default-features -F zip
cargo test --no-default-features -F download

0 comments on commit 42819a8

Please sign in to comment.