Skip to content

Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 #238

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

Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 #238

Workflow file for this run

name: CI
env:
CONFIGURATION: Release
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
include-prerelease: true
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration $Env:CONFIGURATION
- name: Test
run: dotnet test --no-build --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
- name: Upload coverage to Codecov
uses: codecov/[email protected]