From 3f02b0006e93e8a8c7bbbd88996a6e45fb2e36bd Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 12 Nov 2024 18:10:45 +0000 Subject: [PATCH] fix(ci): drop 6.0.x from dontet-version (#92) --- .github/workflows/dotnet.yml | 4 ---- 1 file changed, 4 deletions(-) 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