Skip to content

fixup! Attempting to get CI actions running on OSX. #36

fixup! Attempting to get CI actions running on OSX.

fixup! Attempting to get CI actions running on OSX. #36

Workflow file for this run

name: docker-compose-actions-workflow
on: push
jobs:
test:
runs-on:
- ubuntu-latest
- macos-latest
steps:
- name: Setup docker (if required)
if: runner.os == 'macos'
run: |
brew install docker
colima start
- name: Checkout code
uses: actions/checkout@v4
- name: Build the stack
run: |
docker compose build
- name: Run the stack and check the output
run: |
docker compose up -d
echo "Checking expected output is produced"
sleep 10
CONSOLE_LOGGER_LOGS=$(docker compose logs console-logger -n 10)
docker compose down
echo "Console Logger output is:"
echo "$CONSOLE_LOGGER_LOGS"
SUCCESS_MARKER=$(echo "$CONSOLE_LOGGER_LOGS" | fgrep "This is one row of your data")
test -n "$SUCCESS_MARKER"