commit 634870258372191545874c79215c4b429436b210 parent a7906a2c099291145711231303ba66bf32fc410f Author: William Lindholm <85635561+LindholmLabs@users.noreply.github.com> Date: Sun, 14 Jul 2024 02:41:41 +0200 Update dotnet.yml Diffstat:
| M | .github/workflows/dotnet.yml | | | 23 | ++++++----------------- |
1 file changed, 6 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml @@ -18,22 +18,11 @@ jobs: with: dotnet-version: 8.0.x - # Restore, build, and test for Api project - - name: Restore dependencies for Api - run: dotnet restore Api/Api.csproj + - name: Restore dependencies + run: dotnet restore SimpleMessagingService.sln - - name: Build Api project - run: dotnet build Api/Api.csproj --no-restore + - name: Build + run: dotnet build SimpleMessagingService.sln --no-restore - - name: Test Api project - run: dotnet test Api/Api.csproj --no-build --verbosity normal - - # Restore, build, and test for Client project - - name: Restore dependencies for Client - run: dotnet restore Client/Client.csproj - - - name: Build Client project - run: dotnet build Client/Client.csproj --no-restore - - - name: Test Client project - run: dotnet test Client/Client.csproj --no-build --verbosity normal + - name: Test + run: dotnet test SimpleMessagingService.sln --no-build --verbosity normal