Skip to content

Commit 68ce396

Browse files
committed
minor fixes
1 parent 9614b49 commit 68ce396

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/test-wiremock.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v4
2828

29-
- name: Setup LocalStack and extension
29+
- name: Set up Terraform
30+
uses: hashicorp/setup-terraform@v3
31+
32+
- name: Set up LocalStack and extension
3033
run: |
3134
cd localstack-wiremock
3235
3336
docker pull localstack/localstack-pro &
3437
docker pull wiremock/wiremock &
35-
pip install localstack terraform-local
38+
pip install localstack terraform-local awscli-local[ver1]
3639
3740
make install
3841
make dist

localstack-wiremock/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ sample: ## Deploy sample app
4242
bin/create-stubs.sh
4343
(cd sample-app; tflocal init; tflocal apply -auto-approve)
4444
apiId=$$(awslocal apigateway get-rest-apis | jq -r '.items[0].id'); \
45-
curl -k https://$$apiId.execute-api.us-east-1.localhost.localstack.cloud/dev/time-off
45+
curl -k https://$$apiId.execute-api.us-east-1.localhost.localstack.cloud/dev/time-off | grep time_off_date
4646

4747
clean-dist: clean
4848
rm -rf dist/

0 commit comments

Comments
 (0)