Skip to content

Commit ec27a92

Browse files
committed
Sets up .NET for generator workflow
Adds a step to install the .NET SDK for the generator workflow, specifying version 9.x.
1 parent e261570 commit ec27a92

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/generate.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
steps:
3636
- name: Checkout
3737
uses: actions/checkout@v5
38+
- name: Set up .NET
39+
uses: actions/setup-dotnet@v5
40+
with:
41+
dotnet-version: '9.x'
3842
- name: Generate
3943
working-directory: generator
4044
run: dotnet run

0 commit comments

Comments
 (0)