We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--feature backtrace
1 parent f082ad4 commit 22662efCopy full SHA for 22662ef
.github/workflows/build.yml
@@ -141,8 +141,9 @@ jobs:
141
cargo test --verbose --color always --features esplora-async
142
- name: Test backtrace-debug builds on Rust ${{ matrix.toolchain }}
143
if: "matrix.toolchain == 'stable'"
144
+ shell: bash # Default on Winblows is powershell
145
run: |
- cd lightning && cargo test --verbose --color always --features backtrace
146
+ cd lightning && RUST_BACKTRACE=1 cargo test --verbose --color always --features backtrace
147
- name: Test on Rust ${{ matrix.toolchain }} with net-tokio
148
if: "matrix.build-net-tokio && !matrix.coverage"
149
run: cargo test --verbose --color always
0 commit comments