Skip to content

fixup! feat: add DeleteNBatch method #241

fixup! feat: add DeleteNBatch method

fixup! feat: add DeleteNBatch method #241

Workflow file for this run

name: kit
on:
push: {}
release:
types: [published]
workflow_dispatch: {}
permissions:
packages: write
contents: write
pull-requests: write
id-token: write
jobs:
build-app:
uses: GeoNet/Actions/.github/workflows/reusable-go-apps.yml@main
with:
testSetup: |
docker run --name localstack -d --rm -p 4566:4566 -p 4510-4559:4510-4559 docker.io/localstack/localstack:4.0.3
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 [[ "$(curl -s localhost:4566/_localstack/init | jq -r .completed.READY)" == "true" ]]; do
sleep 1s
done
goTestExtraArgs: -p 1 --tags localstack