Skip to content

Commit

Permalink
Add feature flags to testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kylecarow authored Nov 27, 2024
1 parent 345702a commit 5b8270c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,9 @@ jobs:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
- name: Run tests (default features)
run: cargo test --verbose
- name: Run tests (no default features)
run: cargo test --no-default-features
- name: Run tests (all features)
run: cargo test --all-features

0 comments on commit 5b8270c

Please sign in to comment.