From 912ab784a3cde174ed46e7aa31e358de52fc7975 Mon Sep 17 00:00:00 2001 From: Khamraj Rohit Date: Mon, 9 Sep 2024 12:49:28 -0400 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 2c6eccf..217f7cb 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -21,8 +21,8 @@ jobs: with: dotnet-version: 8.0.x - name: Restore dependencies - run: dotnet restore -p:TargetFramework=net8.0 + run: dotnet restore - name: Build - run: dotnet build -f net8.0 --no-restore + run: dotnet build --no-restore - name: Test - run: dotnet test -f net8.0 --no-build --verbosity normal + run: dotnet test --no-build --verbosity normal