mirror of
https://github.com/Icinga/docker-icinga2.git
synced 2026-04-01 10:21:43 +02:00
23 lines
348 B
YAML
23 lines
348 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
build:
|
|
name: build
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout HEAD
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Icinga 2
|
|
run: git clone https://github.com/Icinga/icinga2.git
|
|
|
|
- name: Build
|
|
run: ./build.bash ./icinga2
|