Skip to content

Commit 02dfd49

Browse files
committed
Diagnosing CI failures.
1 parent a575550 commit 02dfd49

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/build.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
-p:TreatWarningsAsErrors=true
110110
-p:PackageOutputPath=${{ runner.temp }}/dist
111111
112-
- name: CI Diagnostics
112+
- name: CI Diagnostics 1
113113
run: |
114114
echo
115115
echo Initial directory
@@ -132,6 +132,15 @@ jobs:
132132
echo Contents of PSql.Deploy.psd1
133133
cat PSql.Deploy.psd1
134134
135+
- name: CI Diagnostics 2
136+
shell: pwsh
137+
run: |
138+
Set-Location PSql.Deploy.Tests/bin/Release/net6.0
139+
Import-Module PSql -Verbose -PassThru | Format-List
140+
Import-Module ./PSql.Deploy.psd1 -Verbose -PassThru | Format-List
141+
Get-Module PSql | ForEach-Object ExportedCommands | ForEach-Object Values | Format-List
142+
Get-Module PSql.Deploy | ForEach-Object ExportedCommands | ForEach-Object Values | Format-List
143+
135144
# - name: Test
136145
# run: >
137146
# dotnet test --no-build -c Release

0 commit comments

Comments
 (0)