Skip to content

Commit eca36a5

Browse files
ci: add GitHub Actions workflow for LND integration tests
Configures CI to run LND tests using the Docker Compose environment. Closes lightningdevkit#505
1 parent c017d1a commit eca36a5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/lnd-integration.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI Checks - LND Integration Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
check-cln:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v4
11+
12+
- name: Start bitcoind, electrs, and LND
13+
run: docker compose -f docker-compose-lnd.yml up -d
14+
15+
- name: Run LND integration tests
16+
run: RUSTFLAGS="--cfg lnd_test" cargo test --test integration_test_lnd

0 commit comments

Comments
 (0)