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:
208208 if : ${{ !cancelled() && runner.os == 'Windows' }}
209209 run : |
210210 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 }}
212212 if : ${{ !cancelled() && runner.os == 'Windows' }}
213213 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 ;
215222 - name : Install dependencies for python ${{ matrix.python-version }} on ${{ matrix.os }}
216223 shell : bash
217224 run : make -f Makefile test-reqs ;
You can’t perform that action at this time.
0 commit comments