File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,12 @@ jobs:
220220 runs-on : ${{ matrix.os }}
221221
222222 steps :
223+ - name : Show PATH
224+ if : startsWith(matrix.os, 'windows')
225+ run : $Env:PATH -split ';'
226+ - name : Find git
227+ if : startsWith(matrix.os, 'windows')
228+ run : where.exe git
223229 - uses : actions/checkout@v4
224230 - name : Install rustup
225231 if : matrix.os == 'windows-11-arm'
@@ -253,6 +259,12 @@ jobs:
253259 runs-on : ${{ matrix.os }}
254260
255261 steps :
262+ - name : Show PATH
263+ if : startsWith(matrix.os, 'windows')
264+ run : $Env:PATH -split ';'
265+ - name : Find git
266+ if : startsWith(matrix.os, 'windows')
267+ run : where.exe git
256268 - name : Report version/build of Git in this runner image
257269 run : git version --build-options
258270 - name : Upgrade Git for Windows to latest stable release
You can’t perform that action at this time.
0 commit comments