[SDK-3770] Fix logging issue across multiple rest/realtime/push instances #150
This file contains 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: "Unit and Integration Test: Windows (NetFramework)" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
runs-on: windows-latest | |
env: | |
DOTNET_NOLOGO: true | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Download dotnet build-script tools | |
run: dotnet tool restore | |
- name: Unit tests | |
run: ./build.cmd Test.NetFramework.Unit.WithRetry | |
- name: Integration tests | |
run: ./build.cmd Test.NetFramework.Integration.WithRetry |