Skip to content

ci: update Nix installation and caching #783

ci: update Nix installation and caching

ci: update Nix installation and caching #783

Workflow file for this run

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, lwk-cln, lwk-lnd]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Nix and run tests
uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v14
with:
name: peerswap
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix develop --profile dev-profiile --accept-flake-config
- run: "make test-${{matrix.test-vector}}"