Skip to content

Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 #29

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

Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 #29

Workflow file for this run

name: dotnet package
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET Core SDK 6.0.404
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.404
5.0.x
3.1.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Upload dotnet test results
uses: actions/upload-artifact@v3
with:
name: dotnet-results
path: TestResults
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}