make lwk available #746
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 | |
with: | |
fetch-depth: 0 | |
- name: Install Nix | |
uses: determinateSystems/nix-installer-action@v12 | |
- uses: DeterminateSystems/magic-nix-cache-action@v7 | |
- uses: DeterminateSystems/flake-checker-action@v8 | |
- run: nix develop --command make test-${{matrix.test-vector}} | |
integration-tests-2: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test-vector: [lwk-cln, lwk-lnd] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Nix | |
uses: determinateSystems/nix-installer-action@v12 | |
- uses: DeterminateSystems/magic-nix-cache-action@v7 | |
- uses: DeterminateSystems/flake-checker-action@v8 | |
- run: nix develop --command make test-${{matrix.test-vector}} | |