Fetch github actions build test

This commit is contained in:
manuasir
2020-09-21 20:05:58 +02:00

14
.github/workflows/push.yml vendored Normal file
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