Skip to content

Bump YamlDotNet from 16.1.3 to 16.2.0 in the dependencies group (#183) #371

Bump YamlDotNet from 16.1.3 to 16.2.0 in the dependencies group (#183)

Bump YamlDotNet from 16.1.3 to 16.2.0 in the dependencies group (#183) #371

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
DOTNET_VERSION: 6.0.x
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Use .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore NuGet packages
run: dotnet restore
- name: Build application
run: dotnet build -c Release
- name: Lint C# code
run: dotnet format --verify-no-changes --verbosity detailed --no-restore