diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 4b60600..212d24d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -23,7 +23,6 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: | - 6.0.x 8.0.x - name: Add NuGet source @@ -35,9 +34,6 @@ jobs: - name: Build run: dotnet build --no-restore --configuration Release - - name: Test .NET 6 - run: dotnet test --no-build --verbosity normal --configuration Release --framework net6.0 --collect:"XPlat Code Coverage" --results-directory test-results/net6.0 - - name: Test .NET 8 run: dotnet test --no-build --verbosity normal --configuration Release --framework net8.0 --collect:"XPlat Code Coverage" --results-directory test-results/net8.0