From 627978d629f35069249c268a77683d123b89aa03 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Tue, 17 May 2022 10:42:19 -0500 Subject: [PATCH] Update dotnet.yml --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 13c4e09..21351f3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -22,11 +22,11 @@ jobs: with: dotnet-version: 6.x.x - - name: Restore Project + - name: Restore run: dotnet restore - - name: Build Project + - name: Build run: dotnet build --no-restore --configuration Release - - name: Test Project + - name: Test run: dotnet test --no-build --verbosity normal --configuration Release