Skip to content

Commit

Permalink
Added netcore 2.0 for test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
codebude committed Dec 7, 2021
1 parent 6f11153 commit 5d5a674
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/wf-build-release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Setup MSBuild Path
uses: microsoft/setup-msbuild@v1
Expand Down Expand Up @@ -49,7 +51,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Run test .NET 3.5
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
Expand Down Expand Up @@ -127,7 +131,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Restore dependencies
run: dotnet restore
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/wf-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Setup MSBuild Path
uses: microsoft/setup-msbuild@v1
Expand Down Expand Up @@ -50,7 +52,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Run test .NET 3.5
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
Expand Down Expand Up @@ -127,7 +131,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Restore dependencies
run: dotnet restore
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/wf-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Setup MSBuild Path
uses: microsoft/setup-msbuild@v1
Expand Down Expand Up @@ -49,7 +51,9 @@ jobs:
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: |
2.0.x
6.0.x
- name: Run test .NET 3.5
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
Expand Down

0 comments on commit 5d5a674

Please sign in to comment.