Skip to content

Commit

Permalink
ci(redis): add missing port
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksasiriski committed Feb 8, 2024
1 parent 9860034 commit 1d5f9a1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/testingci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
Expand All @@ -55,7 +57,8 @@ jobs:
- name: Test units (only redis)
run: make test-redis
env:
REDIS_HOST: redis
REDIS_HOST: localhost
REDIS_PORT: "6379"

test-engines:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1d5f9a1

Please sign in to comment.