File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,11 @@ cargo check -p lightning-block-sync --verbose --color always --features rpc-clie
90
90
cargo test -p lightning-block-sync --verbose --color always --features rpc-client,rest-client,tokio
91
91
cargo check -p lightning-block-sync --verbose --color always --features rpc-client,rest-client,tokio
92
92
93
+ echo -e " \n\nChecking and testing lightning-persister with features"
94
+ cargo test -p lightning-persister --verbose --color always --features tokio
95
+ cargo check -p lightning-persister --verbose --color always --features tokio
96
+ cargo doc -p lightning-persister --document-private-items --features tokio
97
+
93
98
echo -e " \n\nTest Custom Message Macros"
94
99
cargo test -p lightning-custom-message --verbose --color always
95
100
[ " $CI_MINIMIZE_DISK_USAGE " != " " ] && cargo clean
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ edition = "2021"
13
13
all-features = true
14
14
rustdoc-args = [" --cfg" , " docsrs" ]
15
15
16
+ [features ]
17
+ tokio = [" dep:tokio" ]
18
+
16
19
[dependencies ]
17
20
bitcoin = " 0.32.2"
18
21
lightning = { version = " 0.2.0" , path = " ../lightning" }
You can’t perform that action at this time.
0 commit comments