Skip to content

Commit 5917cda

Browse files
committed
Install redis-tools for Redis connection verification on Linux in CI workflow
1 parent 4bffa22 commit 5917cda

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ jobs:
8181
- name: Setup Redis (Ubuntu)
8282
if: runner.os == 'Linux'
8383
run: |
84-
# Use Redis service container - just verify connection
84+
# Install redis-cli for connection verification
85+
sudo apt-get update -qq
86+
sudo apt-get install -y redis-tools
8587
redis-cli -h localhost -p 6379 ping
8688
8789
- name: Setup Redis (Windows)

0 commit comments

Comments
 (0)