Skip to content

Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.9.0 #1616

Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.9.0

Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.9.0 #1616

Workflow file for this run

name: Build and test RTCV
on: [push, pull_request]
jobs:
buildAndTest:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
- name: Restore packages
run: msbuild RTCV.sln /t:restore
- name: Build with MSBuild
run: msbuild RTCV.sln
- name: Run tests
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Report coverage to codecov
uses: codecov/codecov-action@v1.0.13
with:
file: Tests/coverage.opencover.xml