We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc48c5 commit 881656bCopy full SHA for 881656b
.github/workflows/build.yml
@@ -179,6 +179,7 @@ jobs:
179
cargo check --no-default-features --features=no-std --release
180
cargo check --no-default-features --features=futures --release
181
cargo doc --release
182
+ RUSTDOCFLAGS="--cfg=anchors" cargo doc --release
183
184
fuzz:
185
runs-on: ubuntu-latest
ci/ci-tests.sh
@@ -89,3 +89,8 @@ if [ "$RUSTC_MINOR_VERSION" -gt 55 ]; then
89
cargo test --verbose --color always
90
popd
91
fi
92
+
93
+echo -e "\n\nTest anchors builds"
94
+pushd lightning
95
+RUSTFLAGS="$RUSTFLAGS --cfg=anchors" cargo test --verbose --color always -p lightning
96
+popd
0 commit comments