Skip to content

Commit 665c3be

Browse files
committed
multiple targets for TestRunner
1 parent 9212670 commit 665c3be

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ jobs:
3535
- name: Tests - net9.0 (Latest)
3636
run: dotnet run --no-build -c:Release -f:net9.0 --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
3737

38+
- name: Tests - net8.0 (Latest LTS)
39+
run: dotnet run --no-build -c:Release -f:net8.0 --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
40+
41+
- name: Tests - net6.0 (Previous LTS)
42+
run: dotnet run --no-build -c:Release -f:net6.0 --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
43+
3844
- if: matrix.os == 'windows-latest'
3945
name: Tests - net472 (Windows only)
4046
run: dotnet run --no-build -c:Release --project test/FastExpressionCompiler.TestsRunner.Net472

test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>$(LatestSupportedNet)</TargetFrameworks>
3+
<TargetFrameworks>net9.0;net8.0;net6.0</TargetFrameworks>
44

55
<OutputType>Exe</OutputType>
66
<IsTestProject>false</IsTestProject>

0 commit comments

Comments
 (0)