Skip to content

ci: fix the docker build #412

ci: fix the docker build

ci: fix the docker build #412

Workflow file for this run

name: Integration testing
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: '30 1 1,15 * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- LN_IMPL: clightning
steps:
- uses: actions/checkout@v2
- name: Integration testing
run: |
docker build -f docker/Dockerfile.${{ matrix.LN_IMPL }} -t lnprototest-${{ matrix.LN_IMPL }} .
docker run lnprototest-${{ matrix.LN_IMPL }}