From 9cf58eef97f46a3af36c2ac4f9b529a99d4eb37e Mon Sep 17 00:00:00 2001 From: ikopylov <ikopylov@users.noreply.github.com> Date: Wed, 6 Dec 2023 01:22:00 +0100 Subject: [PATCH] Run linux tests on .NET Core 6.0 (#15) --- .github/workflows/test.yaml | 4 ++-- .../Qoollo.BobClient.UnitTests.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9f3eafc..9993799 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,9 +16,9 @@ jobs: - name: Build run: | dotnet build ./BobClient/ - - name: Test net50 + - name: Test net60 run: | - dotnet test ./BobClient/ --no-build -f "net5.0" --blame-hang --blame-hang-timeout 15m -l "console;verbosity=detailed" + dotnet test ./BobClient/ --no-build -f "net6.0" --blame-hang --blame-hang-timeout 15m -l "console;verbosity=detailed" test-on-windows: diff --git a/BobClient/Qoollo.BobClient.UnitTests/Qoollo.BobClient.UnitTests.csproj b/BobClient/Qoollo.BobClient.UnitTests/Qoollo.BobClient.UnitTests.csproj index 7a1e414..25b6321 100644 --- a/BobClient/Qoollo.BobClient.UnitTests/Qoollo.BobClient.UnitTests.csproj +++ b/BobClient/Qoollo.BobClient.UnitTests/Qoollo.BobClient.UnitTests.csproj @@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <TargetFrameworks>net462;netcoreapp3.1;netcoreapp2.1;net5.0</TargetFrameworks> + <TargetFrameworks>net462;netcoreapp3.1;netcoreapp2.1;net6.0</TargetFrameworks> <IsPackable>false</IsPackable> </PropertyGroup>