We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70560b5 commit a489e35Copy full SHA for a489e35
justfile
@@ -14,7 +14,7 @@ build:
14
# Check code: formatting, compilation, linting, and commit signature
15
check:
16
cargo +nightly fmt --all -- --check
17
- cargo check --workspace --exclude 'example_*' --all-features
+ cargo check --all-features --all-targets
18
cargo clippy --all-features --all-targets -- -D warnings
19
@[ "$(git log --pretty='format:%G?' -1 HEAD)" = "N" ] && \
20
echo "\n⚠️ Unsigned commit: BDK requires that commits be signed." || \
@@ -26,7 +26,7 @@ fmt:
26
27
# Run all tests on the workspace with all features
28
test:
29
- cargo test --workspace --exclude 'example_*' --all-features
+ cargo test --all-features
30
31
# Run pre-push suite: format, check, and test
32
pre-push: fmt check test
0 commit comments