File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 24
24
- name : Restore
25
25
run : dotnet restore
26
26
- name : Build
27
- run : dotnet build --no-restore
27
+ run : dotnet build --no-restore --configuration Release
28
28
- name : Upload
29
29
uses : actions/upload-artifact@v4
30
30
with :
51
51
path : .
52
52
merge-multiple : true
53
53
- name : Test
54
- run : dotnet test --no-restore --no-build --verbosity normal
54
+ run : dotnet test --no-restore --no-build --configuration Release --verbosity normal
55
55
56
56
benchmark :
57
+ name : Benchmark with .NET net${{ matrix.netversion }} on ${{ matrix.os }}
57
58
needs : [build]
58
59
59
60
strategy :
81
82
merge-multiple : true
82
83
- name : Decode Benchmark
83
84
working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
84
- run : dotnet run -c Release --no-restore --no-build --framework net${{ matrix.netversion }}.0 --filter '*DecodeBenchmark*'
85
+ run : dotnet run -c Release --no-restore --no-build --configuration Release -- framework net${{ matrix.netversion }}.0 --filter '*DecodeBenchmark*'
85
86
- name : Encode Benchmark
86
87
working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
87
- run : dotnet run -c Release --no-restore --no-build --framework net${{ matrix.netversion }}.0 --filter '*EncodeBenchmark*'
88
+ run : dotnet run -c Release --no-restore --no-build --configuration Release -- framework net${{ matrix.netversion }}.0 --filter '*EncodeBenchmark*'
You can’t perform that action at this time.
0 commit comments