We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2508f84 commit cba2990Copy full SHA for cba2990
‎.github/workflows/workflow.yml
@@ -205,7 +205,14 @@ jobs:
205
$repo = $env:GITHUB_REPOSITORY
206
$runId = $env:GITHUB_RUN_ID
207
gh run download $runId --repo $repo --pattern *CodeCoverage --dir .
208
- Get-ChildItem -Path . -Recurse | Select-Object -ExpandProperty FullName | Sort-Object
+ $files = Get-ChildItem -Path . -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
209
+ $files | Out-String
210
+ $files | ForEach-Object {
211
+ $fileName = $_.Name
212
+ LogGroup " - $fileName" {
213
+ Show-FileContent -Path $_
214
+ }
215
216
217
# TestModuleStatus:
218
# name: Test module status
0 commit comments