Skip to content

add connection id in handshake response and add echo in ping. (#1821) #30

add connection id in handshake response and add echo in ping. (#1821)

add connection id in handshake response and add echo in ping. (#1821) #30

Workflow file for this run

name: Gated-Windows
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
build_windows:
runs-on: [windows-latest]
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2.2.0
id: filter
with:
filters: |
src:
- 'src/**'
- 'test/**'
- 'build/**'
- 'samples/**'
- '*.cmd'
- '*.ps1'
- '**.props'
- '**.csproj'
- '**.targets'
- '*.sh'
- '*.sln'
- name: Update SubModules
run: git submodule update --init --recursive
if: steps.filter.outputs.src == 'true'
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
7.0.x
6.0.x
5.0.x
include-prerelease: true
- name: Test
run: dotnet test
if: steps.filter.outputs.src == 'true'