Skip to content

Commit fe9a2a2

Browse files
committed
just: Check feature matrix in check
1 parent 941ae76 commit fe9a2a2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

justfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ build:
1414
# Check code: formatting, compilation, linting, and commit signature
1515
check:
1616
cargo +nightly fmt --all -- --check
17-
cargo check --all-features --all-targets
17+
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"
1820
cargo clippy --all-features --all-targets -- -D warnings
1921
@[ "$(git log --pretty='format:%G?' -1 HEAD)" = "N" ] && \
2022
echo "\n⚠️ Unsigned commit: BDK requires that commits be signed." || \

0 commit comments

Comments
 (0)