-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: MSBuild | ||
|
||
on: [push] | ||
|
||
env: | ||
# Path to the solution file relative to the root of the project. | ||
SOLUTION_FILE_PATH: . | ||
|
||
# Configuration type to build. | ||
# You can convert this to a build matrix if you need coverage of multiple configuration types. | ||
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
BUILD_CONFIGURATION: Debug | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Add MSBuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
- name: Setup .NET Core SDK | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 5 | ||
|
||
- name: Restore NuGet packages | ||
working-directory: ${{env.GITHUB_WORKSPACE}} | ||
run: nuget restore ${{env.SOLUTION_FILE_PATH}} | ||
|
||
- name: Restore NuGet packages using dotnet | ||
working-directory: ${{env.GITHUB_WORKSPACE}} | ||
run: dotnet restore ${{env.SOLUTION_FILE_PATH}} | ||
|
||
- name: Build | ||
working-directory: ${{env.GITHUB_WORKSPACE}} | ||
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} | ||
|
||
- name: Test Coverage | ||
working-directory: ${{env.GITHUB_WORKSPACE}} | ||
run: coverage.bat | ||
|
||
- uses: codecov/codecov-action@v1 | ||
with: | ||
files: .coverage/XrmEntitySerializer.5.net40.xml,.coverage/XrmEntitySerializer.6.net40.xml,.coverage/XrmEntitySerializer.7.net452.xml,.coverage/XrmEntitySerializer.8.net452.xml,.coverage/XrmEntitySerializer.9.net452.xml,.coverage/XrmEntitySerializer.9.net462.xml,.coverage/XrmEntitySerializer.core.net5.0.xml,.coverage/XrmEntitySerializer.core.netcoreapp3.0.xml,.coverage/XrmEntitySerializer.core.netcoreapp3.1.xml |