Skip to content

Commit df6862b

Browse files
fix test run
1 parent da6c60d commit df6862b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
- name: Restore dependencies
2727
run: dotnet restore
2828

29-
- name: Build
30-
run: dotnet build --configuration Release --no-restore
29+
- name: Build Test Project
30+
run: dotnet build tests/SharpGraph.Tests/SharpGraph.Tests.csproj --configuration Debug
3131

3232
- 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"
33+
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"
3434

3535
- name: Generate Test Report
3636
if: always()

0 commit comments

Comments
 (0)