Skip to content

Commit a489e35

Browse files
committed
Update justfile
1 parent 70560b5 commit a489e35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build:
1414
# Check code: formatting, compilation, linting, and commit signature
1515
check:
1616
cargo +nightly fmt --all -- --check
17-
cargo check --workspace --exclude 'example_*' --all-features
17+
cargo check --all-features --all-targets
1818
cargo clippy --all-features --all-targets -- -D warnings
1919
@[ "$(git log --pretty='format:%G?' -1 HEAD)" = "N" ] && \
2020
echo "\n⚠️ Unsigned commit: BDK requires that commits be signed." || \
@@ -26,7 +26,7 @@ fmt:
2626

2727
# Run all tests on the workspace with all features
2828
test:
29-
cargo test --workspace --exclude 'example_*' --all-features
29+
cargo test --all-features
3030

3131
# Run pre-push suite: format, check, and test
3232
pre-push: fmt check test

0 commit comments

Comments
 (0)