Skip to content

Commit 2c3d3d4

Browse files
committed
Add .NET 9 requirement for build.
1 parent d791407 commit 2c3d3d4

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/dotnet-release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
with:
1717
dotnet-version: 8.x
1818

19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v3
21+
with:
22+
dotnet-version: 9.x
23+
1924
- name: Semantic Release
2025
uses: cycjimmy/semantic-release-action@v4
2126
with:

.github/workflows/dotnet-test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: .NET Testing
22

3+
on:
4+
workflow_dispatch:
5+
36
on:
47
pull_request:
58
branches:
@@ -21,6 +24,11 @@ jobs:
2124
with:
2225
dotnet-version: 8.x
2326

27+
- name: Setup .NET
28+
uses: actions/setup-dotnet@v3
29+
with:
30+
dotnet-version: 9.x
31+
2432
- name: Linting
2533
run: dotnet format --verify-no-changes
2634

0 commit comments

Comments
 (0)