Skip to content

fixup! WIP: CI with github actions. #23

fixup! WIP: CI with github actions.

fixup! WIP: CI with github actions. #23

Workflow file for this run

name: docker-compose-actions-workflow
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Docker
uses: crazy-max/ghaction-setup-docker@v3
- name: Build the stack
uses: actions/checkout@v4
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"