File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 6060 strategy :
6161 matrix :
6262 os : [ubuntu-latest, windows-latest, macos-latest]
63+ netversion : [7, 8, 9]
6364
6465 concurrency :
6566 group : benchmark
@@ -69,10 +70,10 @@ jobs:
6970
7071 steps :
7172 - uses : actions/checkout@v3
72- - name : Setup .NET 9
73+ - name : Setup .NET ${{ matrix.netversion }}
7374 uses : actions/setup-dotnet@v3
7475 with :
75- dotnet-version : 9 .x
76+ dotnet-version : ${{ matrix.netversion }} .x
7677 - name : Fix libssl
7778 if : ${{ matrix.netversion == 5 && matrix.os == 'ubuntu-latest' }}
7879 run : |
8384 name : build
8485 path : .
8586 merge-multiple : true
86- - name : Decode Benchmark
87- working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
88- run : dotnet run --configuration Release
89- - name : Encode Benchmark
87+ - name : Benchmark
9088 working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
91- run : dotnet run --configuration Release
89+ run : dotnet run --configuration Release --framework net${{ matrix.netversion }}.0
You can’t perform that action at this time.
0 commit comments