We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e383b9b commit 33ab3c3Copy full SHA for 33ab3c3
.github/workflows/build.yml
@@ -38,8 +38,9 @@ jobs:
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
+ - if: matrix.os == 'windows-latest'
+ name: Tests - net6.0 (Previous LTS)
43
+ run: dotnet run --no-build -c:Release -f:net6.0 --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
44
45
- if: matrix.os == 'windows-latest'
46
name: Tests - net472 (Windows only)
0 commit comments