Skip to content

Commit

Permalink
try3
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumNZ committed May 20, 2024
1 parent 9f01f56 commit 1726b6f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
with:
testSetup: |
docker run --name localstack -d --rm -p 4566:4566 -p 4510-4559:4510-4559 "$IMAGE_LOCALSTACK" \
echo "waiting for localstack to be ready"
until curl -v localhost:4566; do
sleep 1s
done
echo "waiting for localstack service status to be ready"
until docker exec localstack /opt/code/localstack/bin/localstack status services; do
sleep 1s
done
echo "waiting for localstack to be ready" \
until curl -v localhost:4566; do \
sleep 1s \
done \
echo "waiting for localstack service status to be ready" \
until docker exec localstack /opt/code/localstack/bin/localstack status services; do \
sleep 1s \
done \
goTestExtraArgs: --tags localstack

0 comments on commit 1726b6f

Please sign in to comment.