CI: Run clippy with default and all features enabled

Since `event-stream` is optional we need Clippy to check that code
separately.
This commit is contained in:
Michael Davis
2025-05-04 09:25:07 -04:00
parent d34387ca09
commit 8ae1d58a29

View File

@@ -76,9 +76,12 @@ jobs:
- name: Run cargo fmt
run: cargo fmt --check
- name: Run cargo clippy
- name: Run cargo clippy with default features enabled
run: cargo clippy -- -D warnings
- name: Run cargo clippy with all features enabled
run: cargo clippy --all-features -- -D warnings
- name: Run cargo doc
run: cargo doc --no-deps --document-private-items
env: