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 aa062bd commit 3da8146Copy full SHA for 3da8146
.github/workflows/ci.yml
@@ -28,12 +28,12 @@ jobs:
28
steps:
29
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30
- name: Checkout Repo
31
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
32
- name: Install .NET 5
33
uses: actions/setup-dotnet@v2
34
with:
35
dotnet-version: '5.0.x'
36
- - name: Install .NET 6
+ - name: Install .NET 6
37
38
39
dotnet-version: '6.0.x'
@@ -45,6 +45,10 @@ jobs:
45
46
47
dotnet-version: 8.0.x
48
+ - name: Install .NET 9
49
+ uses: actions/setup-dotnet@v2
50
+ with:
51
+ dotnet-version: 9.0.x
52
include-prerelease: true
53
- run: dotnet restore
54
- run: dotnet build --configuration Release --no-restore
0 commit comments