Skip to content

Bump Grpc.Tools from 2.66.0 to 2.67.0 in the dependencies group #366

Bump Grpc.Tools from 2.66.0 to 2.67.0 in the dependencies group

Bump Grpc.Tools from 2.66.0 to 2.67.0 in the dependencies group #366

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