Skip to content

Commit e2e7880

Browse files
author
Petr Sramek
committed
hwat is this
1 parent 70df963 commit e2e7880

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/dotnet.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ on:
1111

1212
jobs:
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:
@@ -82,7 +82,7 @@ jobs:
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*'

0 commit comments

Comments
 (0)