Skip to content

Commit 6f7495d

Browse files
committed
CI: Lint the crate and examples
We are not currently running the linter in CI, do so.
1 parent f44943d commit 6f7495d

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/rust.yml

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
env:
2828
DO_FMT: true
2929
run: ./contrib/test.sh
30+
- name: Running linter
31+
env:
32+
DO_LINT: true
33+
run: ./contrib/test.sh
3034

3135
Int-tests:
3236
name: Integration tests

contrib/test.sh

+15
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,21 @@ fi
3333
# Defaults / sanity checks
3434
cargo test
3535

36+
if [ "$DO_LINT" = true ]; then
37+
clippy="cargo +nightly clippy"
38+
39+
$clippy -- -D warnings
40+
41+
# Lint all the examples
42+
$clippy --example htlc --features=compiler -- -D warnings
43+
$clippy --example parse -- -D warnings
44+
$clippy --example sign_multisig -- -D warnings
45+
$clippy --example verify_tx -- -D warnings
46+
$clippy --example xpub_descriptors -- -D warnings
47+
$clippy --example taproot --features=compiler -- -D warnings
48+
$clippy --example psbt_sign_finalize --features=base64 -- -D warnings
49+
fi
50+
3651
if [ "$DO_FEATURE_MATRIX" = true ]
3752
then
3853
# All features

0 commit comments

Comments
 (0)