Skip to content

WIP: CI with github actions. #28

WIP: CI with github actions.

WIP: CI with github actions. #28

Workflow file for this run

name: docker-compose-actions-workflow
on: push
jobs:
test:
runs-on:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build the stack
run: |
docker compose up -d --build
echo "Checking redpanda is running:"
sleep 5
REDPANDA_PROCESS=$(docker compose ps -q redpanda)
docker compose down
echo Redpanda Process ID: "'$REDPANDA_PROCESS'"
test -n "$REDPANDA_PROCESS"