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 7441b2c commit 4f55190Copy full SHA for 4f55190
.github/workflows/dotnet.yml
@@ -16,10 +16,22 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v4
19
- - name: Setup .NET
20
- uses: actions/setup-dotnet@v4
+ - name: Setup .NET 6.0
+ uses: actions/setup-dotnet@v1
21
with:
22
- dotnet-version: 9.0.x
+ dotnet-version: '6.0.x'
23
+ - name: Setup .NET 7.0
24
25
+ with:
26
+ dotnet-version: '7.0.x'
27
+ - name: Setup .NET 8.0
28
29
30
+ dotnet-version: '8.0.x'
31
+ - name: Setup .NET 9.0
32
33
34
+ dotnet-version: '9.0.x'
35
- name: Restore dependencies
36
run: dotnet restore
37
- name: Build
0 commit comments