We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b2c2d commit c7ea34cCopy full SHA for c7ea34c
.github/workflows/dotnet.yml
@@ -25,16 +25,32 @@ jobs:
25
run: dotnet build --no-restore
26
- name: Test
27
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
43
benchmark:
44
needs: [build]
45
46
strategy:
47
matrix:
48
os: [ubuntu-latest, windows-latest, macos-latest]
49
50
runs-on: ${{ matrix.os }}
51
52
concurrency:
- group: becnhmark-group
53
+ group: benchmark-group
54
cancel-in-progress: true
55
56
steps:
0 commit comments