We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
check
1 parent 941ae76 commit fe9a2a2Copy full SHA for fe9a2a2
1 file changed
justfile
@@ -14,7 +14,9 @@ build:
14
# Check code: formatting, compilation, linting, and commit signature
15
check:
16
cargo +nightly fmt --all -- --check
17
- cargo check --all-features --all-targets
+ cargo check --all-targets --no-default-features --features "30_0"
18
+ cargo check --all-targets --no-default-features --features "29_0"
19
+ cargo check --all-targets --no-default-features --features "28_0"
20
cargo clippy --all-features --all-targets -- -D warnings
21
@[ "$(git log --pretty='format:%G?' -1 HEAD)" = "N" ] && \
22
echo "\n⚠️ Unsigned commit: BDK requires that commits be signed." || \
0 commit comments