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 fe35c74 commit 5ef2e96Copy full SHA for 5ef2e96
1 file changed
.github/workflows/conda_build.yml
@@ -31,6 +31,19 @@ jobs:
31
- name: Checkout code
32
uses: actions/checkout@v4
33
34
+ - name: Setup Redis (macOS/Windows fallback)
35
+ shell: bash
36
+ run: |
37
+ if [[ "${{ matrix.os }}" == "macos-latest" ]]; then
38
+ brew install redis
39
+ brew services start redis
40
+ elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
41
+ # Download and install Redis for Windows
42
+ curl -L -o redis.zip https://github.com/tporadowski/redis/releases/download/v5.0.14.1/Redis-x64-5.0.14.1.zip
43
+ unzip redis.zip -d redis
44
+ cd redis && ./redis-server.exe --service-install --service-start
45
+ fi
46
+
47
- name: Setup Miniconda
48
uses: conda-incubator/setup-miniconda@v3
49
with:
0 commit comments