Skip to content

Commit 5d5a674

Browse files
committed
Added netcore 2.0 for test runner
1 parent 6f11153 commit 5d5a674

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

.github/workflows/wf-build-release-ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
- name: Install .NET 6
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: '6.0.x'
19+
dotnet-version: |
20+
2.0.x
21+
6.0.x
2022
2123
- name: Setup MSBuild Path
2224
uses: microsoft/setup-msbuild@v1
@@ -49,7 +51,9 @@ jobs:
4951
- name: Install .NET 6
5052
uses: actions/setup-dotnet@v1
5153
with:
52-
dotnet-version: '6.0.x'
54+
dotnet-version: |
55+
2.0.x
56+
6.0.x
5357
5458
- name: Run test .NET 3.5
5559
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
@@ -127,7 +131,9 @@ jobs:
127131
- name: Install .NET 6
128132
uses: actions/setup-dotnet@v1
129133
with:
130-
dotnet-version: '6.0.x'
134+
dotnet-version: |
135+
2.0.x
136+
6.0.x
131137
132138
- name: Restore dependencies
133139
run: dotnet restore

.github/workflows/wf-build-release.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
- name: Install .NET 6
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: '6.0.x'
20+
dotnet-version: |
21+
2.0.x
22+
6.0.x
2123
2224
- name: Setup MSBuild Path
2325
uses: microsoft/setup-msbuild@v1
@@ -50,7 +52,9 @@ jobs:
5052
- name: Install .NET 6
5153
uses: actions/setup-dotnet@v1
5254
with:
53-
dotnet-version: '6.0.x'
55+
dotnet-version: |
56+
2.0.x
57+
6.0.x
5458
5559
- name: Run test .NET 3.5
5660
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
@@ -127,7 +131,9 @@ jobs:
127131
- name: Install .NET 6
128132
uses: actions/setup-dotnet@v1
129133
with:
130-
dotnet-version: '6.0.x'
134+
dotnet-version: |
135+
2.0.x
136+
6.0.x
131137
132138
- name: Restore dependencies
133139
run: dotnet restore

.github/workflows/wf-build-test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
- name: Install .NET 6
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: '6.0.x'
19+
dotnet-version: |
20+
2.0.x
21+
6.0.x
2022
2123
- name: Setup MSBuild Path
2224
uses: microsoft/setup-msbuild@v1
@@ -49,7 +51,9 @@ jobs:
4951
- name: Install .NET 6
5052
uses: actions/setup-dotnet@v1
5153
with:
52-
dotnet-version: '6.0.x'
54+
dotnet-version: |
55+
2.0.x
56+
6.0.x
5357
5458
- name: Run test .NET 3.5
5559
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming

0 commit comments

Comments
 (0)