File tree Expand file tree Collapse file tree 1 file changed +0
-28
lines changed Expand file tree Collapse file tree 1 file changed +0
-28
lines changed Original file line number Diff line number Diff line change 16
16
17
17
steps :
18
18
- uses : actions/checkout@v3
19
- - name : Setup .NET 5
20
- uses : actions/setup-dotnet@v3
21
- with :
22
- dotnet-version : 5.x
23
- - name : Setup .NET 6
24
- uses : actions/setup-dotnet@v3
25
- with :
26
- dotnet-version : 6.x
27
- - name : Setup .NET 7
28
- uses : actions/setup-dotnet@v3
29
- with :
30
- dotnet-version : 7.x
31
- - name : Setup .NET 8
32
- uses : actions/setup-dotnet@v3
33
- with :
34
- dotnet-version : 8.x
35
19
- name : Setup .NET 9
36
20
uses : actions/setup-dotnet@v3
37
21
with :
42
26
run : dotnet build --no-restore
43
27
- name : Test
44
28
run : dotnet test --no-build --verbosity normal
45
- - name : Benchmark (.NET 5)
46
- working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
47
- run : dotnet run -c Release --framework net5.0
48
- - name : Benchmark (.NET 6)
49
- working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
50
- run : dotnet run -c Release --framework net6.0
51
- - name : Benchmark (.NET 7)
52
- working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
53
- run : dotnet run -c Release --framework net7.0
54
- - name : Benchmark (.NET 8)
55
- working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
56
- run : dotnet run -c Release --framework net8.0
57
29
- name : Benchmark (.NET 9)
58
30
working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
59
31
run : dotnet run -c Release --framework net9.0
You can’t perform that action at this time.
0 commit comments