File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -208,10 +208,17 @@ jobs:
208
208
if : ${{ !cancelled() && runner.os == 'Windows' }}
209
209
run : |
210
210
echo "C:\Program Files\Git\usr\bin" >> $env:GITHUB_PATH
211
- - name : VERIFY Git Unix tools in PATH for braindead windows ${{ matrix.os }}
211
+ - name : VERIFY that PATH resolution works somehow for braindead windows on ${{ matrix.os }}
212
212
if : ${{ !cancelled() && runner.os == 'Windows' }}
213
213
run : |
214
- command -v touch
214
+ command -v touch ;
215
+ command -v python ;
216
+ command -v python3 ;
217
+ command -v make ;
218
+ where touch ;
219
+ where python ;
220
+ where python3 ;
221
+ where make ;
215
222
- name : Install dependencies for python ${{ matrix.python-version }} on ${{ matrix.os }}
216
223
shell : bash
217
224
run : make -f Makefile test-reqs ;
You can’t perform that action at this time.
0 commit comments