Skip to content

Commit

Permalink
Run linux tests on .NET Core 6.0 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikopylov authored Dec 6, 2023
1 parent 42530ec commit 9cf58ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
@@ -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>
Expand Down

0 comments on commit 9cf58ee

Please sign in to comment.