We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6c60d commit df6862bCopy full SHA for df6862b
1 file changed
.github/workflows/unit-tests.yml
@@ -26,11 +26,11 @@ jobs:
26
- name: Restore dependencies
27
run: dotnet restore
28
29
- - name: Build
30
- run: dotnet build --configuration Release --no-restore
+ - name: Build Test Project
+ run: dotnet build tests/SharpGraph.Tests/SharpGraph.Tests.csproj --configuration Debug
31
32
- name: Run Tests
33
- run: dotnet test tests/SharpGraph.Tests/SharpGraph.Tests.csproj --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx" --logger "console;verbosity=detailed"
+ run: dotnet test tests/SharpGraph.Tests/SharpGraph.Tests.csproj --configuration Debug --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx" --logger "console;verbosity=detailed"
34
35
- name: Generate Test Report
36
if: always()
0 commit comments