Skip to content

Commit

Permalink
Fix unittest matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
yotamloe committed May 27, 2024
1 parent 8d9cd5c commit cf39f58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['2.0', '3.0', '5.0', '6.0', '7.0', '8.0']
steps:
- uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet-version }}
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
dotnet-version: 8.0
- name: Display dotnet version
run: dotnet --version
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/UnitTests/UnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net5.0;netcoreapp3.1;net6.0;net8.0;net7.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
Expand Down

0 comments on commit cf39f58

Please sign in to comment.