Skip to content

Commit b278ef7

Browse files
committed
Consolidate .NET setup calls.
1 parent bed825a commit b278ef7

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

.github/workflows/build.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,13 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4
14-
- name: Setup .NET 6
14+
- name: Setup .NET
1515
uses: actions/setup-dotnet@v4
1616
with:
17-
dotnet-version: 6.0.x
18-
- name: Setup .NET 7
19-
uses: actions/setup-dotnet@v4
20-
with:
21-
dotnet-version: 7.0.x
22-
- name: Setup .NET 8
23-
uses: actions/setup-dotnet@v4
24-
with:
25-
dotnet-version: 8.0.x
17+
dotnet-version: |
18+
6.0.x
19+
7.0.x
20+
8.0.x
2621
- name: Build and test
2722
run: dotnet msbuild ./default.proj
2823
- name: Upload coverage

0 commit comments

Comments
 (0)