Skip to content

fixup! WIP: CI with github actions. #20

fixup! WIP: CI with github actions.

fixup! WIP: CI with github actions. #20

Workflow file for this run

name: docker-compose-actions-workflow
on: push
jobs:
test:
runs-on: [ ubuntu-latest, macos-latest ]
steps:
- 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"