File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,15 @@ jobs:
180
180
cargo check --no-default-features --features=futures --release
181
181
cargo doc --release
182
182
RUSTDOCFLAGS="--cfg=anchors" cargo doc --release
183
+ - name : Run cargo check for Taproot build.
184
+ run : |
185
+ cargo check --release
186
+ cargo check --no-default-features --features=no-std --release
187
+ cargo check --no-default-features --features=futures --release
188
+ cargo doc --release
189
+ env :
190
+ RUSTFLAGS : ' --cfg=anchors --cfg=taproot'
191
+ RUSTDOCFLAGS : ' --cfg=anchors --cfg=taproot'
183
192
184
193
fuzz :
185
194
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 94
94
echo -e " \n\nTest anchors builds"
95
95
pushd lightning
96
96
RUSTFLAGS=" $RUSTFLAGS --cfg=anchors" cargo test --verbose --color always -p lightning
97
+ echo -e " \n\nTest Taproot builds"
98
+ RUSTFLAGS=" $RUSTFLAGS --cfg=anchors --cfg=taproot" cargo test --verbose --color always -p lightning
97
99
popd
You can’t perform that action at this time.
0 commit comments