Skip to content

Commit d5c8bd7

Browse files
committed
chore: another test
1 parent b79909b commit d5c8bd7

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/dockerized-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ jobs:
4242
- name: Test container manually
4343
run: |
4444
docker run -d --name test-container -p 9000:8080 local/test basic-lambda
45-
sleep 10
45+
sleep 15
46+
echo "Container logs after startup:"
47+
docker logs test-container
48+
echo "Attempting to invoke function:"
49+
curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{"command":"test"}' || echo "Invocation failed"
50+
echo "Final container logs:"
4651
docker logs test-container
4752
docker kill test-container || true
4853

0 commit comments

Comments
 (0)