Skip to content

Commit 80157d6

Browse files
committed
ci: fix clippy check to exclude example crates
1 parent 4a4529c commit 80157d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cont_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
with:
150150
token: ${{ secrets.GITHUB_TOKEN }}
151151
name: Clippy Results
152-
args: --all-features --all-targets -- -D warnings
152+
args: --workspace --exclude 'example_*' --all-features --all-targets -- -D warnings
153153

154154
build-examples:
155155
needs: prepare

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build:
1212
check:
1313
cargo +nightly fmt --all -- --check
1414
cargo check --workspace --exclude 'example_*' --all-features
15-
cargo clippy --all-features --all-targets -- -D warnings
15+
cargo clippy --workspace --exclude 'example_*' --all-features --all-targets -- -D warnings
1616
@[ "$(git log --pretty='format:%G?' -1 HEAD)" = "N" ] && \
1717
echo "\n⚠️ Unsigned commit: BDK requires that commits be signed." || \
1818
true

0 commit comments

Comments
 (0)