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 c0e4b0b commit b785427Copy full SHA for b785427
.github/workflows/lnd-integration.yml
@@ -0,0 +1,19 @@
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: Set permissions for data_lnd folder
16
+ run: sudo chmod -R 755 ./data_lnd/
17
18
+ - name: Run LND integration tests
19
+ run: RUSTFLAGS="--cfg lnd_test" cargo test --test integration_tests_lnd
0 commit comments