Skip to content

Commit 050069e

Browse files
committed
syntax mistake in action fixed
1 parent db3de59 commit 050069e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ jobs:
6161
# it can directly address Redis. We still need to expose SRH's port to the host machine, however, so that
6262
# we can run tests against it.
6363
- name: Run SRH container
64-
run: >
65-
docker run -it -d -p 8080:80
66-
--network ${{ job.container.network }}
67-
-e SRH_MODE=env
68-
-e SRH_TOKEN=${{ env.SRH_TOKEN }}
69-
-e SRH_CONNECTION_STRING="redis://redis:6379"
64+
run: \
65+
docker run -it -d -p 8080:80 \
66+
--network ${{ job.container.network }} \
67+
-e SRH_MODE=env \
68+
-e SRH_TOKEN=${{ env.SRH_TOKEN }} \
69+
-e SRH_CONNECTION_STRING="redis://redis:6379" \
7070
hiett/serverless-redis-http:latest
7171

7272
# The following tests fail because of bugs with Upstash's implementation of Redis, NOT because of our library

0 commit comments

Comments
 (0)