File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
- name : Build with .NET ${{ matrix.netversion }}
14
+ name : Build with .NET 9
15
15
16
16
runs-on : ubuntu-latest
17
17
18
18
steps :
19
19
- uses : actions/checkout@v3
20
- - name : Setup .NET 9
20
+ - name : Install .NET 9
21
21
uses : actions/setup-dotnet@v3
22
22
with :
23
23
dotnet-version : 9.x
@@ -51,10 +51,10 @@ jobs:
51
51
path : .
52
52
merge-multiple : true
53
53
- name : Test
54
- run : dotnet test --no-restore --no-build --configuration Release --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
+ name : Benchmark with .NET ${{ matrix.netversion }}.0 on ${{ matrix.os }}
58
58
needs : [build]
59
59
60
60
strategy :
82
82
merge-multiple : true
83
83
- name : Decode Benchmark
84
84
working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
85
- run : dotnet run --no-restore --no-build --framework net${{ matrix.netversion }}.0 --filter '*DecodeBenchmark*'
85
+ run : dotnet run --no-restore --no-build --configuration Release -- framework net${{ matrix.netversion }}.0 --filter '*DecodeBenchmark*'
86
86
- name : Encode Benchmark
87
87
working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
88
- run : dotnet run --no-restore --no-build --framework net${{ matrix.netversion }}.0 --filter '*EncodeBenchmark*'
88
+ run : dotnet run --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