- Notifications
You must be signed in to change notification settings - Fork4
Updated readme and tags#172
Workflow file for this run
This file contains hidden or 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
name:Dotnet CI | |
on: | |
push: | |
branches:[ main ] | |
pull_request: | |
branches:[ main ] | |
jobs: | |
build-windows: | |
runs-on:windows-2019 | |
steps: | |
-uses:actions/checkout@v3 | |
-name:Setup .NET | |
uses:actions/setup-dotnet@v3 | |
with: | |
dotnet-version:6.0.x | |
-name:Setup NuGet | |
uses:NuGet/setup-nuget@v1.2.0 | |
-name:Restore dependencies | |
run:dotnet restore | |
-name:Build | |
run:dotnet build --configuration Release | |
-name:Test | |
run:dotnet test --logger "trx;LogFileName=test-results.trx" || true |