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