Skip to content

Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.2 #72

Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.2

Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.2 #72

Workflow file for this run

name: Build.NET
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --nologo --no-restore
- name: Test
run: dotnet test --nologo --no-build --verbosity normal --collect:"XPlat Code Coverage" --settings tests/coverletArgs.runsettings