1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-12 22:35:43 +00:00

ci: drop net7.0 target for tests

This commit is contained in:
Oliver Booth 2024-06-12 03:46:46 +01:00
parent 4a80c93cc2
commit 69157b9517
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5

View File

@ -24,7 +24,6 @@ jobs:
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Add NuGet source
@ -39,9 +38,6 @@ jobs:
- 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 7
run: dotnet test --no-build --verbosity normal --configuration Release --framework net7.0 --collect:"XPlat Code Coverage" --results-directory test-results/net7.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