Skip to content

Commit 2656921

Browse files
committed
Updating build script.
1 parent caefb88 commit 2656921

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/dotnetcore.yml renamed to .github/workflows/continuous-integration.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,21 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11+
1112
- uses: actions/checkout@v2
13+
1214
- name: Setup .NET Core
1315
uses: actions/setup-dotnet@v1
1416
with:
15-
dotnet-version: 3.1.100
16-
- name: Build with dotnet
17+
dotnet-version: '3.1.x'
18+
19+
- name: Build solution
1720
run: dotnet build --configuration Release
21+
1822
- name: Generate coverage report
19-
run: dotnet test --collect "XPlat Code Coverage" --results-directory "./test-results"
23+
run: dotnet test --collect "XPlat Code Coverage" --results-directory "./test-results" --configuration Release --no-restore --verbosity normal
24+
continue-on-error: true
25+
2026
- name: Upload coverage to Codecov
2127
uses: codecov/codecov-action@v1
2228
with:

0 commit comments

Comments
 (0)