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 ab7e8b8 commit 46cc7d8Copy full SHA for 46cc7d8
1 file changed
.github/workflows/multiversion_test.yml
@@ -13,6 +13,17 @@ jobs:
13
permissions:
14
contents: read
15
16
+ services:
17
+ redis:
18
+ image: redis:7
19
+ options: >-
20
+ --health-cmd "redis-cli ping"
21
+ --health-interval 10s
22
+ --health-timeout 5s
23
+ --health-retries 5
24
+ ports:
25
+ - 6379:6379
26
+
27
steps:
28
- name: 🏁 Checkout code
29
uses: actions/checkout@v4
@@ -27,7 +38,7 @@ jobs:
38
- name: 📦 Install omnipkg
39
run: |
40
python -m pip install --upgrade pip
30
- pip install -e . # Install omnipkg from source
41
+ pip install -e . redis # Install omnipkg from source and redis client
31
42
32
43
- name: ⚙️ Configure omnipkg
33
44
0 commit comments