We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d65c49 commit cbb9919Copy full SHA for cbb9919
.github/workflows/rust.yml
@@ -26,3 +26,9 @@ jobs:
26
run: cargo test --verbose -- --nocapture
27
- name: Run tests for all features
28
run: cargo test --all-features --verbose -- --nocapture
29
+ - name: Check formatting
30
+ run: cargo fmt --check
31
+ - name: Clippy
32
+ run: cargo clippy -- -D warnings
33
+ - name: Build documentation
34
+ run: cargo doc --all-features
0 commit comments