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 2a3ed7f commit 9b23413Copy full SHA for 9b23413
.github/workflows/test-all.yml
@@ -24,10 +24,18 @@ jobs:
24
${{ runner.os }}-nuget-
25
26
- name: dotnet restore
27
- run: dotnet restore
+ run: dotnet restore
28
29
- name: dotnet build
30
- run: dotnet build --no-restore
+ run: |
31
+ dotnet build --no-restore
32
+ echo "dotnet build done"
33
34
- name: dotnet test
- run: dotnet test --no-build --verbosity normal
35
+ # run: dotnet test --no-build --verbosity normal
36
+ run: >
37
+ dotnet test
38
+ --configuration Release
39
+ --logger GitHubActions
40
+ --
41
+ RunConfiguration.CollectSourceInformation=true
0 commit comments