Skip to content

Commit

Permalink
Update dotnet-run-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonrakena authored Dec 12, 2023
1 parent 0975cbb commit e22e8b5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/dotnet-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore Tests~/Promul.Tests.csproj
run: dotnet restore test~/Promul.Tests/Promul.Tests.csproj && dotnet restore test~/Promul.Server.Tests/Promul.Server.Tests.csproj
- name: Build
run: dotnet build Tests~/Promul.Tests.csproj --no-restore
- name: Test
run: dotnet test Tests~/Promul.Tests.csproj --no-build --verbosity normal
run: dotnet build test~/Promul.Tests/Promul.Tests.csproj --no-restore && dotnet build test~/Promul.Server.Tests/Promul.Server.Tests.csproj --no-restore
- name: Test core
run: dotnet test test~/Promul.Tests/Promul.Tests.csproj--no-build --verbosity normal
- name: Test server
run: dotnet test test~/Promul.Server.Tests/Promul.Server.Tests.csproj--no-build --verbosity normal

0 comments on commit e22e8b5

Please sign in to comment.