Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ jobs:


- name: Check formatting
run: cargo fmt -- --check
run: cargo fmt --all -- --check

- name: Lint code
run: cargo clippy -- -D warnings
run: cargo clippy --all-targets --all-features -- -D warnings

- name: Run tests
run: cargo test --verbose
- name: Run all-feature tests
run: cargo test --all-features --verbose

- name: Run minimal-feature tests
run: cargo test --no-default-features --verbose
Loading
Loading