mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-31 04:34:29 +01:00
- A new GitHub Actions workflow for running integration tests has been added. This workflow is defined in .github/workflows/integration_tests.yaml. - New GitHub Actions for setting up Bitcoin, c-lightning, and LND environments have been implemented. - The actions use caching for quick builds. - The .gitignore file has been updated. - LND and CLN setup and tests now run in their own individual jobs, which should improve the workflow speed. - Introduced a new reusable action for handling test states.
16 lines
420 B
YAML
16 lines
420 B
YAML
name: 'Cache itest'
|
|
description: 'Fetch LSPD Integration Test and cache the go directory'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Cache itest
|
|
id: cache-itest
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/go
|
|
key: itest
|
|
- name: Get LSPD Integration Test
|
|
if: steps.cache-itest.outputs.cache-hit != 'true'
|
|
run: go get github.com/breez/lspd/itest
|
|
shell: bash |