Scott Hiett commited on
Commit
050069e
·
1 Parent(s): db3de59

syntax mistake in action fixed

Browse files
Files changed (1) hide show
  1. .github/workflows/test.yml +6 -6
.github/workflows/test.yml CHANGED
@@ -61,12 +61,12 @@ jobs:
61
  # it can directly address Redis. We still need to expose SRH's port to the host machine, however, so that
62
  # we can run tests against it.
63
  - 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"
70
  hiett/serverless-redis-http:latest
71
 
72
  # The following tests fail because of bugs with Upstash's implementation of Redis, NOT because of our library
 
61
  # it can directly address Redis. We still need to expose SRH's port to the host machine, however, so that
62
  # we can run tests against it.
63
  - 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" \
70
  hiett/serverless-redis-http:latest
71
 
72
  # The following tests fail because of bugs with Upstash's implementation of Redis, NOT because of our library