We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744814c commit eff468eCopy full SHA for eff468e
.github/workflows/integration.yml
@@ -106,5 +106,8 @@ jobs:
106
shell: cmd
107
env:
108
REDIS_VERSION: ${{env.redis_stack_version}}
109
- run: |
+ run: |
110
+ # trim version to major.minor.patch format
111
+ REDIS_VERSION=$(echo "$REDIS_VERSION" | sed -E 's/[^0-9]*([0-9]+\.[0-9]+(\.[0-9]+)?).*/\1/')
112
+ echo $REDIS_VERSION
113
dotnet test -f net481 --no-build --verbosity detailed -p:BuildInParallel=false tests/Test.proj --logger GitHubActions
0 commit comments