Skip to content

Commit bdb2655

Browse files
committed
Changed: Update GitHub Actions
1 parent 3c1828b commit bdb2655

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build-and-publish.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ jobs:
3535
# Optional SDK version(s) to use. If not provided, will install global.json version when available. Examples: 2.2.104, 3.1, 3.1.x
3636
dotnet-version: 3.1.x
3737

38+
- name: Setup .NET Core SDK (5.0.x)
39+
uses: actions/setup-dotnet@v1.9.0
40+
with:
41+
# Optional SDK version(s) to use. If not provided, will install global.json version when available. Examples: 2.2.104, 3.1, 3.1.x
42+
dotnet-version: 5.0.x
43+
3844
- name: Setup .NET Core SDK (6.0.x)
3945
uses: actions/setup-dotnet@v1.9.0
4046
with:
@@ -58,7 +64,7 @@ jobs:
5864

5965
- name: Test
6066
run: |
61-
dotnet test ./Source/Reloaded.Memory.sln /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput="../../$env:CODE_COVERAGE_PATH" --% /p:Exclude=\"[Reloaded.Memory.Shared]*,[xunit.*]*\"
67+
dotnet test ./Source/Reloaded.Memory.Tests/Reloaded.Memory.Tests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput="../../$env:CODE_COVERAGE_PATH" --% /p:Exclude=\"[Reloaded.Memory.Shared]*,[xunit.*]*\"
6268
6369
- name: Codecov
6470
# You may pin to the exact commit or the version.

0 commit comments

Comments
 (0)