test: the amount of the fee invoice is taken into account when testing #421
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: [master] | |
env: | |
SLOW_MACHINE: 1 | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Build | |
run: make bins | |
- name: Test | |
run: make test | |
integration-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test-vector: [bitcoin-cln, bitcoin-lnd, liquid-cln, liquid-lnd, misc-integration] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: "Cache Nix store" | |
uses: actions/[email protected] | |
id: nix-cache | |
with: | |
path: /tmp/nixcache | |
key: nix-${{ hashFiles('packages.nix') }} | |
- name: Install Nix | |
uses: cachix/install-nix-action@v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: "Import Nix store cache" | |
if: "steps.nix-cache.outputs.cache-hit == 'true'" | |
run: "nix-store --import < /tmp/nixcache" | |
- name: Run tests | |
run: nix-shell --run "make test-${{matrix.test-vector}}" | |
- name: "Export Nix store cache" | |
if: "steps.nix-cache.outputs.cache-hit != 'true'" | |
run: "nix-store --export $(find /nix/store -maxdepth 1 -name '*-*') > /tmp/nixcache" |