Add LND Integration Tests in CI #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Checks - LND Integration Tests | |
on: [push, pull_request] | |
jobs: | |
check-cln: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Start bitcoind, electrs, and LND | |
run: docker compose -f docker-compose-lnd.yml up -d | |
- name: Set permissions for data_lnd folder | |
run: sudo chmod -R 755 ./data_lnd/ | |
- name: Run LND integration tests | |
run: RUSTFLAGS="--cfg lnd_test" cargo test --test integration_tests_lnd |