We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92e2ff7 commit 0942229Copy full SHA for 0942229
.github/actions/run-tests/action.yml
@@ -66,6 +66,7 @@ runs:
66
67
echo "::group::Starting Redis servers"
68
redis_major_version=$(echo "$REDIS_VERSION" | grep -oP '^\d+')
69
+ echo "REDIS_MAJOR_VERSION=${redis_major_version}" >> $GITHUB_ENV
70
71
if (( redis_major_version < 8 )); then
72
echo "Using redis-stack for module tests"
@@ -87,8 +88,7 @@ runs:
87
88
89
if (( redis_major_version < 7 )); then
90
export REDIS_STACK_EXTRA_ARGS="--tls-auth-clients optional --save ''"
- export REDIS_EXTRA_ARGS="--tls-auth-clients optional --save ''"
91
- echo "REDIS_MAJOR_VERSION=${redis_major_version}" >> $GITHUB_ENV
+ export REDIS_EXTRA_ARGS="--tls-auth-clients optional --save ''"
92
fi
93
94
invoke devenv --endpoints=all-stack
0 commit comments