mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
0b671fb144
This reverts commit 1b6f3d687f
.
19 lines
409 B
YAML
19 lines
409 B
YAML
name: CI Compilation testing
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 120
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- { OS: alpine }
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Integration testing
|
|
run: |
|
|
docker build -f contrib/docker/Dockerfile.${{matrix.OS}} -t clightning-${{matrix.OS}} .
|