Skip to content

Commit c7ea34c

Browse files
author
Petr Sramek
committed
separatet test job
1 parent 92b2c2d commit c7ea34c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/dotnet.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,32 @@ jobs:
2525
run: dotnet build --no-restore
2626
- name: Test
2727
run: dotnet test --no-build --verbosity normal
28+
29+
test:
30+
needs: [build]
31+
32+
runs-on: ubuntu-latest
33+
34+
steps:
35+
- uses: actions/checkout@v3
36+
- name: Setup .NET 9
37+
uses: actions/setup-dotnet@v3
38+
with:
39+
dotnet-version: 9.x
40+
- name: Test
41+
run: dotnet test --no-build --verbosity normal
42+
2843
benchmark:
2944
needs: [build]
3045

3146
strategy:
3247
matrix:
3348
os: [ubuntu-latest, windows-latest, macos-latest]
49+
3450
runs-on: ${{ matrix.os }}
3551

3652
concurrency:
37-
group: becnhmark-group
53+
group: benchmark-group
3854
cancel-in-progress: true
3955

4056
steps:

0 commit comments

Comments
 (0)