Skip to content

Commit f579a13

Browse files
committed
Fix argument name
1 parent 058f89d commit f579a13

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/actions/run-tests/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,25 +73,25 @@ runs:
7373
- name: Run RESP2 tests
7474
run: |
7575
if [ "${{inputs.event-loop}}" == "uvloop" ]; then
76-
invoke standalone-tests --redismod-url=${REDISMOD_URL} --uvloop --protocol=2
76+
invoke standalone-tests --redis-mod-url=${REDISMOD_URL} --uvloop --protocol=2
7777
invoke cluster-tests --uvloop --protocol=2
7878
else
79-
invoke standalone-tests --redismod-url=${REDISMOD_URL} --protocol=2
79+
invoke standalone-tests --redis-mod-url=${REDISMOD_URL} --protocol=2
8080
invoke cluster-tests --protocol=2
8181
fi
8282
shell: bash
8383

8484
- name: Run RESP3 tests
8585
run: |
8686
if [ "${{inputs.event-loop}}" == "uvloop" ]; then
87-
invoke standalone-tests --redismod-url=${REDISMOD_URL} --uvloop --protocol=3
87+
invoke standalone-tests --redis-mod-url=${REDISMOD_URL} --uvloop --protocol=3
8888
8989
# hiredis does not support RESP3 on cluster
9090
if [ "${{inputs.parser-backend}}" != 'hiredis' ]; then
9191
invoke cluster-tests --uvloop --protocol=3
9292
fi
9393
else
94-
invoke standalone-tests --redismod-url=${REDISMOD_URL} --protocol=3
94+
invoke standalone-tests --redis-mod-url=${REDISMOD_URL} --protocol=3
9595
9696
# hiredis does not support RESP3 on cluster
9797
if [ "${{inputs.parser-backend}}" != 'hiredis' ]; then

0 commit comments

Comments
 (0)