Skip to content

Commit cd09d7f

Browse files
committed
updated workflow
1 parent 5994a01 commit cd09d7f

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/benchmark.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,24 @@ jobs:
88
build:
99

1010
runs-on: windows-2022
11-
cancel-timeout-minutes: 360
1211
timeout-minutes: 360
1312

1413
steps:
1514
- uses: actions/checkout@v4
1615
- name: Setup .NET
1716
uses: actions/setup-dotnet@v4
1817
with:
19-
dotnet-version: 9.0.x
18+
dotnet-version: 10.0.x
19+
20+
- name: Restore dependencies
21+
run: |
22+
cd ./src
23+
dotnet restore
2024
2125
- name: Build
2226
run: |
2327
cd ./src
24-
dotnet build -c Release
28+
dotnet build --no-restore -c Release
2529
2630
- name: Run Benchmarks
2731
run: |

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v4
1818
with:
19-
dotnet-version: 9.0.x
19+
dotnet-version: 10.0.x
2020
- name: Restore dependencies
2121
run: |
2222
cd ./src

0 commit comments

Comments
 (0)