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 30b2400 commit effdc4aCopy full SHA for effdc4a
.github/workflows/build.yml
@@ -38,4 +38,9 @@ jobs:
38
- name: Build on Rust ${{ matrix.toolchain }}
39
if: ${{ matrix.build-net-tokio }} != true
40
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose -p lightning
41
-
+ - name: Test on Rust ${{ matrix.toolchain }} with net-tokio
42
+ if: ${{ matrix.build-net-tokio }}
43
+ run: RUSTFLAGS="-C link-dead-code" cargo test --verbose
44
+ - name: Test on Rust ${{ matrix.toolchain }}
45
+ if: ${{ matrix.build-net-tokio }} != true
46
+ run: RUSTFLAGS="-C link-dead-code" cargo test --verbose -p lightning
0 commit comments