@@ -57,24 +57,24 @@ jobs:
57
57
pip install -r dev_requirements.txt
58
58
invoke linters
59
59
60
- current_version :
60
+ redis_version :
61
61
runs-on : ubuntu-latest
62
62
outputs :
63
- CURRENT_REDIS_VERSION : ${{ env.CURRENT_REDIS_VERSION }}
63
+ CURRENT : ${{ env.CURRENT_REDIS_VERSION }}
64
64
steps :
65
65
- name : Compute outputs
66
66
run : |
67
- echo "CURRENT_REDIS_VERSION =${{ env.CURRENT_REDIS_VERSION }}" >> $GITHUB_OUTPUT
67
+ echo "CURRENT =${{ env.CURRENT_REDIS_VERSION }}" >> $GITHUB_OUTPUT
68
68
69
69
tests :
70
70
runs-on : ubuntu-latest
71
71
timeout-minutes : 60
72
- needs : current_version
72
+ needs : redis_version
73
73
strategy :
74
74
max-parallel : 15
75
75
fail-fast : false
76
76
matrix :
77
- redis-version : [ ${{ needs.current_version .outputs.CURRENT_REDIS_VERSION }} ] # , '8.0-M01', '7.2.6', '6.2.16']
77
+ redis-version : [ " ${{ needs.redis_version .outputs.CURRENT }}" ] # , '8.0-M01', '7.2.6', '6.2.16']
78
78
python-version : ['3.8', '3.12']
79
79
parser-backend : ['plain']
80
80
event-loop : ['asyncio']
@@ -92,13 +92,13 @@ jobs:
92
92
93
93
python-compatibility-tests :
94
94
runs-on : ubuntu-latest
95
- needs : [ current_version , tests ]
95
+ needs : [ redis_version , tests ]
96
96
timeout-minutes : 60
97
97
strategy :
98
98
max-parallel : 15
99
99
fail-fast : false
100
100
matrix :
101
- redis-version : [ ${{ needs.current_version .outputs.CURRENT_REDIS_VERSION }} ]
101
+ redis-version : [ " ${{ needs.redis_version .outputs.CURRENT }}" ]
102
102
python-version : ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10']
103
103
parser-backend : [ 'plain' ]
104
104
event-loop : [ 'asyncio' ]
@@ -116,13 +116,13 @@ jobs:
116
116
117
117
hiredis-tests :
118
118
runs-on : ubuntu-latest
119
- needs : [current_version , tests]
119
+ needs : [redis_version , tests]
120
120
timeout-minutes : 60
121
121
strategy :
122
122
max-parallel : 15
123
123
fail-fast : false
124
124
matrix :
125
- redis-version : [ ${{ needs.current_version .outputs.CURRENT_REDIS_VERSION }} ]
125
+ redis-version : [ " ${{ needs.redis_version .outputs.CURRENT }}" ]
126
126
python-version : [ '3.8', '3.12']
127
127
parser-backend : [ 'hiredis' ]
128
128
event-loop : [ 'asyncio' ]
@@ -149,13 +149,13 @@ jobs:
149
149
150
150
uvloop-tests :
151
151
runs-on : ubuntu-latest
152
- needs : [current_version , tests]
152
+ needs : [redis_version , tests]
153
153
timeout-minutes : 60
154
154
strategy :
155
155
max-parallel : 15
156
156
fail-fast : false
157
157
matrix :
158
- redis-version : [ ${{ needs.current_version .outputs.CURRENT_REDIS_VERSION }} ]
158
+ redis-version : [ " ${{ needs.redis_version .outputs.CURRENT }}" ]
159
159
python-version : [ '3.8', '3.12' ]
160
160
parser-backend : [ 'plain' ]
161
161
event-loop : [ 'uvloop' ]
0 commit comments