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 60
60
strategy :
61
61
matrix :
62
62
os : [ubuntu-latest, windows-latest, macos-latest]
63
+ netversion : [7, 8, 9]
63
64
64
65
concurrency :
65
66
group : benchmark
@@ -69,10 +70,10 @@ jobs:
69
70
70
71
steps :
71
72
- uses : actions/checkout@v3
72
- - name : Setup .NET 9
73
+ - name : Setup .NET ${{ matrix.netversion }}
73
74
uses : actions/setup-dotnet@v3
74
75
with :
75
- dotnet-version : 9 .x
76
+ dotnet-version : ${{ matrix.netversion }} .x
76
77
- name : Fix libssl
77
78
if : ${{ matrix.netversion == 5 && matrix.os == 'ubuntu-latest' }}
78
79
run : |
83
84
name : build
84
85
path : .
85
86
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
90
88
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