Skip to content

Commit 46ca14e

Browse files
committed
Updated workflow to support build dotnet 9
1 parent e4dfd1d commit 46ca14e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
21+
with:
22+
dotnet-version: 9.0.x
2123
- name: Restore dependencies
2224
run: dotnet restore
2325
- name: Build
2426
run: dotnet build --no-restore
2527
- name: Test
26-
run: dotnet test --no-build --verbosity normal
28+
run: dotnet test --no-build --verbosity normal

0 commit comments

Comments
 (0)