@@ -94,16 +94,16 @@ jobs:
94
94
steps :
95
95
- name : Checkout source
96
96
uses : actions/checkout@v2
97
+
98
+ - name : Setup Python 2 (setup it)
99
+ uses : actions/setup-python@v2
100
+ with :
101
+ python-version : ' 2.x'
97
102
98
103
- name : Setup Python 3
99
104
uses : actions/setup-python@v2
100
105
with :
101
106
python-version : ' 3.x'
102
-
103
- - name : Setup Python 2 (setup it)
104
- uses : actions/setup-python@v2
105
- with :
106
- python-version : ' 2.x'
107
107
108
108
- name : Fetch Scylla and Cassandra versions
109
109
id : fetch-versions
@@ -136,15 +136,15 @@ jobs:
136
136
java-version : ' 8'
137
137
distribution : ' adopt'
138
138
139
- - name : Setup Python 3
140
- uses : actions/setup-python@v2
141
- with :
142
- python-version : ' 3.x'
143
-
144
139
- name : Setup Python 2 (cas it)
145
140
uses : actions/setup-python@v2
146
141
with :
147
142
python-version : ' 2.x'
143
+
144
+ - name : Setup Python 3
145
+ uses : actions/setup-python@v2
146
+ with :
147
+ python-version : ' 3.x'
148
148
149
149
- name : Setup environment
150
150
run : |
@@ -175,6 +175,7 @@ jobs:
175
175
- name : Check python versions
176
176
run : |
177
177
python --version
178
+ echo "aaa"
178
179
python2 --version
179
180
python3 --version
180
181
@@ -199,16 +200,16 @@ jobs:
199
200
java-version : ' 8'
200
201
distribution : ' adopt'
201
202
202
- - name : Setup Python 3
203
- uses : actions/setup-python@v2
204
- with :
205
- python-version : ' 3.x'
206
-
207
203
- name : Setup Python 2 (scylla test)
208
204
uses : actions/setup-python@v2
209
205
with :
210
206
python-version : ' 2.x'
211
207
208
+ - name : Setup Python 3
209
+ uses : actions/setup-python@v2
210
+ with :
211
+ python-version : ' 3.x'
212
+
212
213
- name : Setup environment
213
214
run : |
214
215
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
@@ -239,5 +240,6 @@ jobs:
239
240
- name : Check python versions
240
241
run : |
241
242
python --version
243
+ echo "aaa"
242
244
python2 --version
243
245
python3 --version
0 commit comments