Skip to content

Commit ebeb25a

Browse files
committed
break apart commands to see whats failing
1 parent db28045 commit ebeb25a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,29 +57,32 @@ jobs:
5757
- name: Run macox-latest-lambda
5858
run: |
5959
echo "running macox-latest-lambda"
60+
ls -al lambdas/macox-latest-lambda
6061
unzip -o \
6162
lambdas/macox-latest-lambda/test-func.zip \
62-
-d /tmp/macox-latest-lambda > /dev/null 2>&1 && \
63+
-d /tmp/macox-latest-lambda
6364
docker run \
6465
-i --rm \
6566
-v /tmp/macox-latest-lambda:/var/task:ro,delegated \
6667
lambci/lambda:provided 'test-func' '{"some": "event"}'
6768
- name: Run windows-latest-lambda
6869
run: |
6970
echo "running windows-latest-lambda"
71+
ls -al lambdas/windows-latest-lambda
7072
unzip -o \
7173
lambdas/windows-latest-lambda/test-func.zip \
72-
-d /tmp/windows-latest-lambda > /dev/null 2>&1 && \
74+
-d /tmp/windows-latest-lambda
7375
docker run \
7476
-i --rm \
7577
-v /tmp/lambda:/var/task:ro,delegated \
7678
lambci/lambda:provided 'test-func' '{"some": "event"}'
7779
- name: Run ubuntu-latest-lambda
7880
run: |
7981
echo "running ubuntu-latest-lambda"
82+
ls -al lambdas/ubuntu-latest-lambda
8083
unzip -o \
8184
lambdas/macox-latest-lambda/test-func.zip \
82-
-d /tmp/ubuntu-latest-lambda > /dev/null 2>&1 && \
85+
-d /tmp/ubuntu-latest-lambda
8386
docker run \
8487
-i --rm \
8588
-v /tmp/ubuntu-latest-lambda:/var/task:ro,delegated \

0 commit comments

Comments
 (0)