File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,8 @@ jobs:
171
171
run : |
172
172
declared_pyver="${{ matrix.pyver }}"
173
173
actual_pyver=$(${{ env.RUN_CMD }} python3 --version | cut -d' ' -f2 | cut -d'.' -f1,2)
174
+ echo "Declared Python version: $declared_pyver"
175
+ echo "Actual Python version: $actual_pyver"
174
176
if [ "$declared_pyver" != "$actual_pyver" ]; then
175
177
echo "Python version mismatch: declared $declared_pyver, image has $actual_pyver"
176
178
exit 1
Original file line number Diff line number Diff line change 94
94
run : |
95
95
declared_pyver="${{ matrix.pyver }}"
96
96
actual_pyver=$(${{ env.RUN_CMD }} python3 --version | cut -d' ' -f2 | cut -d'.' -f1,2)
97
+ echo "Declared Python version: $declared_pyver"
98
+ echo "Actual Python version: $actual_pyver"
97
99
if [ "$declared_pyver" != "$actual_pyver" ]; then
98
100
echo "Python version mismatch: declared $declared_pyver, image has $actual_pyver"
99
101
exit 1
You can’t perform that action at this time.
0 commit comments