mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-28 01:24:42 +01:00
c0c826d2ee
Changelog-None: introduce in ci the compilation testing on different os Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
18 lines
384 B
YAML
18 lines
384 B
YAML
name: CI Compilation testing
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
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}} .
|