We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--feature backtrace
1 parent f4a8cea commit d50db3bCopy full SHA for d50db3b
.github/workflows/build.yml
@@ -148,8 +148,9 @@ jobs:
148
cargo test --verbose --color always --features esplora-async
149
- name: Test backtrace-debug builds on Rust ${{ matrix.toolchain }}
150
if: "matrix.toolchain == 'stable'"
151
+ shell: bash # Default on Winblows is powershell
152
run: |
- cd lightning && cargo test --verbose --color always --features backtrace
153
+ cd lightning && RUST_BACKTRACE=1 cargo test --verbose --color always --features backtrace
154
- name: Test on Rust ${{ matrix.toolchain }} with net-tokio
155
if: "matrix.build-net-tokio && !matrix.coverage && matrix.build-tx-sync"
156
run: cargo test --verbose --color always
0 commit comments