Skip to content

Commit

Permalink
ci: test different features
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdd committed Mar 4, 2023
1 parent eb73bc9 commit 1f49c9f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,13 @@ jobs:
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1

- name: Run tests (debug)
- name: Run tests (debug) - no default features
run: cargo test --verbose --no-default-features
- name: Run tests (debug) - default features
run: cargo test --verbose
- name: Run tests (debug) - all features
run: cargo test --verbose --all-features
- name: Run tests (release)
- name: Run tests (release) - all features
run: cargo test --verbose --all-features --release

Bench:
Expand Down

0 comments on commit 1f49c9f

Please sign in to comment.