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 1111
1212jobs :
1313 build :
14- name : Build with .NET ${{ matrix.netversion }}
14+ name : Build with .NET 9
1515
1616 runs-on : ubuntu-latest
1717
1818 steps :
1919 - uses : actions/checkout@v3
20- - name : Setup .NET 9
20+ - name : Install .NET 9
2121 uses : actions/setup-dotnet@v3
2222 with :
2323 dotnet-version : 9.x
@@ -51,10 +51,10 @@ jobs:
5151 path : .
5252 merge-multiple : true
5353 - 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
5555
5656 benchmark :
57- name : Benchmark with .NET net ${{ matrix.netversion }} on ${{ matrix.os }}
57+ name : Benchmark with .NET ${{ matrix.netversion }}.0 on ${{ matrix.os }}
5858 needs : [build]
5959
6060 strategy :
8282 merge-multiple : true
8383 - name : Decode Benchmark
8484 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*'
8686 - name : Encode Benchmark
8787 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