Skip to content

Commit e7c0c5e

Browse files
committed
Add CI testing for lightning-custom-message crate
1 parent bac068f commit e7c0c5e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build.yml

+9
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
build-no-std: true
3232
build-futures: true
3333
build-tx-sync: true
34+
- toolchain: stable
35+
test-custom-message: true
3436
- toolchain: beta
3537
platform: macos-latest
3638
build-net-tokio: true
@@ -54,6 +56,8 @@ jobs:
5456
build-no-std: true
5557
build-futures: true
5658
build-tx-sync: true
59+
- toolchain: beta
60+
test-custom-message: true
5761
- toolchain: 1.41.1
5862
build-no-std: false
5963
test-log-variants: true
@@ -226,6 +230,11 @@ jobs:
226230
RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always --features rpc-client
227231
RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always --features rpc-client,rest-client
228232
RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always --features rpc-client,rest-client,tokio
233+
- name: Test Custom Message Macros on Rust ${{ matrix.toolchain }}
234+
if: "matrix.test-custom-message"
235+
run: |
236+
cd lightning-custom-message
237+
cargo test --verbose --color always
229238
- name: Install deps for kcov
230239
if: matrix.coverage
231240
run: |

0 commit comments

Comments
 (0)