Skip to content

Commit 4ef765f

Browse files
committed
add redis to integration tests
1 parent 1088921 commit 4ef765f

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/integration_tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ on:
77
jobs:
88
integration-tests:
99
runs-on: ubuntu-latest
10+
services:
11+
redis:
12+
image: redis
13+
options: >-
14+
--health-cmd "redis-cli ping"
15+
--health-interval 10s
16+
--health-timeout 5s
17+
--health-retries 5
18+
ports:
19+
- 6379:6379
1020
steps:
1121
- uses: actions/checkout@v3
1222
- name: Set up Python

0 commit comments

Comments
 (0)