Skip to content

Commit ab67f37

Browse files
remove env var attempt for redis image
1 parent 9313e8c commit ab67f37

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ on:
1515
env:
1616
PYTHON_VERSION: "3.11"
1717
UV_VERSION: "0.7.13"
18-
DEFAULT_REDIS_IMAGE: "8.0.2"
1918

2019
jobs:
2120
service-tests:
@@ -92,7 +91,7 @@ jobs:
9291
# 3.11 tests are run in the service-tests job
9392
python-version: ["3.9", "3.10", "3.12", "3.13"]
9493
redis-py-version: ["5.x", "6.x"]
95-
redis-version: ["6.2.6-v9", "latest", "${{ env.DEFAULT_REDIS_IMAGE }}"]
94+
redis-version: ["6.2.6-v9", "latest", "8.0.2"]
9695
steps:
9796
- name: Check out repository
9897
uses: actions/checkout@v4
@@ -131,7 +130,7 @@ jobs:
131130
132131
- name: Set Redis image name
133132
run: |
134-
if [[ "${{ matrix.redis-version }}" == "${{ env.DEFAULT_REDIS_IMAGE }}" ]]; then
133+
if [[ "${{ matrix.redis-version }}" == "8.0.2" ]]; then
135134
echo "REDIS_IMAGE=redis:${{ matrix.redis-version }}" >> $GITHUB_ENV
136135
else
137136
echo "REDIS_IMAGE=redis/redis-stack-server:${{ matrix.redis-version }}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)