Skip to content

Commit 74a5765

Browse files
committed
Fix docker compose command
1 parent 7ef385c commit 74a5765

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,13 @@ runs:
6565
if (( redis_major_version < 7 )); then
6666
export REDIS_STACK_EXTRA_ARGS="--tls-auth-clients optional --save ''"
6767
export REDIS_EXTRA_ARGS="--tls-auth-clients optional --save ''"
68-
fi
69-
else
70-
echo "Using redis CE for module tests"
71-
fi
68+
fi
7269
73-
docker compose -f tests/dockers/docker-compose.yml up -d
70+
docker compose --profile all-stack -f tests/dockers/docker-compose.yml up -d --build
71+
else
72+
echo "Using redis CE for module tests"
73+
docker compose --profile all -f tests/dockers/docker-compose.yml up -d --build
74+
fi
7475
shell: bash
7576

7677
# Make sure only the desired dotnet version is set both as target and as active SDK.

0 commit comments

Comments
 (0)