Merge branch 'feature-github-actions' into devel-rework

This commit is contained in:
manuasir
2020-07-30 00:33:04 +02:00
parent 6419f35716
commit 67e259a681
+14
View File
@@ -0,0 +1,14 @@
name: Wazuh Docker pipeline
on: [push]
jobs:
build-stack:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Check running containers
run: docker ps -a