Skip to content

Commit 647ed27

Browse files
author
Petr Sramek
committed
added multiple framewrok version setup
1 parent e73c054 commit 647ed27

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/dotnet.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,23 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19-
- name: Setup .NET
19+
- name: Setup .NET 5
20+
uses: actions/setup-dotnet@v3
21+
with:
22+
dotnet-version: 5.x
23+
- name: Setup .NET 6
24+
uses: actions/setup-dotnet@v3
25+
with:
26+
dotnet-version: 6.x
27+
- name: Setup .NET 7
28+
uses: actions/setup-dotnet@v3
29+
with:
30+
dotnet-version: 7.x
31+
- name: Setup .NET 8
32+
uses: actions/setup-dotnet@v3
33+
with:
34+
dotnet-version: 8.x
35+
- name: Setup .NET 9
2036
uses: actions/setup-dotnet@v3
2137
with:
2238
dotnet-version: 9.x

0 commit comments

Comments
 (0)