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 c9d740e commit 3b5c693Copy full SHA for 3b5c693
1 file changed
.github/workflows/dotnet.yml
@@ -16,18 +16,13 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v2
19
- - name: Setup .NET 8
20
- uses: actions/setup-dotnet@v1
+ - name: Setup .NET SDKs
+ uses: actions/setup-dotnet@v5
21
with:
22
- dotnet-version: 8.0.x
23
- - name: Setup .NET 9
24
25
- with:
26
- dotnet-version: 9.0.x
27
- - name: Setup .NET 10
28
29
30
- dotnet-version: 10.0.x
+ dotnet-version: |
+ 10.0.x
+ 9.0.x
+ 8.0.x
31
- name: Restore dependencies
32
run: dotnet restore
33
- name: Build
0 commit comments