Add CLN integration tests #2
This file contains 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: Continuous Integration Checks - CLN | |
on: [push, pull_request] | |
jobs: | |
check-cln: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Start bitcoind, electrs, and lightningd | |
run: docker compose -f docker-compose-cln.yml up -d | |
- name: Run CLN integration tests | |
run: RUSTFLAGS="--cfg cln_test" cargo test --test integration_tests_cln |