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 - uses : dtolnay/rust-toolchain@stable
225231 - uses : Swatinem/rust-cache@v2
@@ -250,6 +256,12 @@ jobs:
250256 runs-on : ${{ matrix.os }}
251257
252258 steps :
259+ - name : Show PATH
260+ if : startsWith(matrix.os, 'windows')
261+ run : $Env:PATH -split ';'
262+ - name : Find git
263+ if : startsWith(matrix.os, 'windows')
264+ run : where.exe git
253265 - uses : actions/checkout@v4
254266 - uses : dtolnay/rust-toolchain@stable
255267 - uses : Swatinem/rust-cache@v2
You can’t perform that action at this time.
0 commit comments