Skip to content

Commit

Permalink
feat(ci): run tests for default features and all features separately
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoniePhiline committed Oct 28, 2024
1 parent 7520221 commit 3cb0fa3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
- name: Run tests (default features)
run: cargo test --verbose
- name: Run tests (all features)
run: cargo test --verbose --all-features
- name: Build docs
run: cargo doc --no-deps --verbose

0 comments on commit 3cb0fa3

Please sign in to comment.