File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -201,8 +201,17 @@ jobs:
201
201
New-Item -ItemType Directory -Path /tmp/DbatoolsExport -Force | Out-Null
202
202
}
203
203
204
+ - name : Debug working directory
205
+ shell : pwsh
206
+ run : |
207
+ Write-Host "Current working directory: $(Get-Location)"
208
+ Write-Host "Repository workspace: ${{ github.workspace }}"
209
+ Write-Host "Script path to execute: ${{ matrix.script }}"
210
+ Write-Host "Full script path: ${{ github.workspace }}/${{ matrix.script }}"
211
+
204
212
- name : Run integration tests (PowerShell Core)
205
213
shell : pwsh
214
+ working-directory : ${{ github.workspace }}
206
215
run : |
207
216
Import-Module ./artifacts/dbatools.library/dbatools.library.psd1 -Force
208
217
Import-Module ./dbatools/dbatools.psd1 -Force
@@ -213,6 +222,7 @@ jobs:
213
222
- name : Run integration tests (Windows PowerShell)
214
223
if : matrix.os == 'windows-latest'
215
224
shell : powershell
225
+ working-directory : ${{ github.workspace }}
216
226
run : |
217
227
Import-Module ./artifacts/dbatools.library/dbatools.library.psd1 -Force
218
228
Import-Module ./dbatools/dbatools.psd1 -Force
You can’t perform that action at this time.
0 commit comments